Created
November 25, 2014 16:24
-
-
Save sammydigits/f03347793f21aa67d2c4 to your computer and use it in GitHub Desktop.
Super simple JQuery Image Cycle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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