Skip to content

Instantly share code, notes, and snippets.

@sammydigits
Created November 25, 2014 16:24
Show Gist options
  • Select an option

  • Save sammydigits/f03347793f21aa67d2c4 to your computer and use it in GitHub Desktop.

Select an option

Save sammydigits/f03347793f21aa67d2c4 to your computer and use it in GitHub Desktop.
Super simple JQuery Image Cycle
//original: http://snook.ca/archives/javascript/simplest-jquery-slideshow
$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein');},
3000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment