This repository has been archived on 2020-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
photo/static/js/index.js

12 lines
331 B
JavaScript

var carrousel = $( ".carrousel" );
$( ".portrait" ).click( function(e){
var src = $(this).find(".pic").attr( "data-src-wide" );
carrousel.find("img").attr( "src", src );
carrousel.fadeIn( 200 );
});
carrousel.find( ".close" ).click( function(e){
carrousel.find( "img" ).attr( "src", '' );
carrousel.fadeOut( 200 );
} );