Team:UNITN-Trento/JS/Team

From 2013.igem.org

(Difference between revisions)
Line 7: Line 7:
$img.fadeOut('fast', function() {
$img.fadeOut('fast', function() {
$img.attr('src',alt);
$img.attr('src',alt);
 +
$img.attr('data-alt',src);
$img.fadeIn();
$img.fadeIn();
-
})
+
});
-
$img.attr('data-alt',src);
+
});
});

Revision as of 12:26, 12 August 2013

$(document).ready(function() { $( '#jms-slideshow' ).jmslideshow();

$img = $('#jms-slideshow .image 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(); }); });