Team:UNITN-Trento/JS/Team
From 2013.igem.org
function swapBg(img) { alt = $(img).attr('data-alt'); src = $(img).attr('src'); $(img).fadeOut('fast', function() { $(img).attr('src',alt); $(img).attr('data-alt',src); $(img).fadeIn(); }); }
$(document).ready(function() { $( '#jms-slideshow' ).jmslideshow();
$('#jms-slideshow .image').each(function() { $(this).mouseenter(function(e) { e.preventDefault(); swapBg($(this).children('img')); }); }); $('#jms-slideshow .image').each(function() { $(this).mouseleave(function(e) { e.preventDefault(); swapBg($(this).children('img')); }); }); });