/ Published in: jQuery
URL: http://jquerydemo.com/demo/auto-playing-slideshow.aspx
View demo here: http://jquerydemo.com/demo/auto-playing-slideshow.aspx
Expand |
Embed | Plain Text
$(document).ready(function() { $("#images img:gt(0)").hide(); setInterval(function() { var current = $('#images img:visible'); var next = current.next().length ? current.next() : $('#images img:eq(0)'); current.hide(); next.fadeIn(); }, 3000); });
You need to login to post a comment.
