$(document).ready(function() { $('#div164250 .mitem').mouseenter(function(event) { link=$(this).find('img').parent().attr('href'); if(link) $(this).css('cursor','pointer'); }); $('#div164250 .mitem').click(function(e) { var href = $(e.target).parent().attr('href'); if(!href) { link=$(this).find('img').parent().attr('href'); //if(link=='#')return false; //if(!link)return false; if(link && link!='#') { location.href=link; return; } link=$(this).find('img').attr('src'); $.fancybox.open([ { src : link, } ], { loop : false }); } }); $('#div164250 .mitem *[wsl=listeimage]').removeClass('webzoom'); $('#div164250 .mitem').mouseenter(function(event) { $('.webzoom1').removeClass('webzoom1'); $(this).find('[ltype=image]').css('overflow','hidden'); $(this).find('[wsl=listeimage]').addClass('webzoom1'); $(this).css('cursor','pointer'); }); $('#div164250 .mitem').mouseleave(function(event) { $(this).find('[wsl=listeimage]').removeClass('webzoom1'); $(this).find('[wsl=listeimage]').addClass('webzoom1out'); }); $('#div164250 .mitem *[wsl=listeimage]').addClass('wow animated webzoom'); $('#div164250 .mitem').css('overflow','hidden'); $('#div164250 .mitem').mouseenter(function(event) { $(this).find('[wsl=listeicon]').addClass('animated fadeInDown'); $(this).find('[wsl=listeicon]').removeClass(' fadeOutDown'); }); $('#div164250 .mitem').mouseleave(function(event) { $(this).find('[wsl=listeicon]').removeClass('animated fadeInDown'); $(this).find('[wsl=listeicon]').addClass('animated fadeOutDown'); }); $('#div164250 .mitem *[wsl=listeicon]').on('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(event) { $(this).removeClass('animated fadeInDown'); }); });