Skip to content

Instantly share code, notes, and snippets.

@dimitrikennedy
Created March 9, 2012 01:37
Show Gist options
  • Save dimitrikennedy/2004542 to your computer and use it in GitHub Desktop.
Save dimitrikennedy/2004542 to your computer and use it in GitHub Desktop.
JavaScript: Sequential Animations
var startanimate = $(''),
i = 0;
setTimeout( function() {
(function() {
$(startanimate[i++] || []).fadeIn('slow', arguments.callee);
})();
}, 500 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment