Skip to content

Instantly share code, notes, and snippets.

@mediaupstream
Created July 29, 2011 06:12
Show Gist options
  • Select an option

  • Save mediaupstream/1113256 to your computer and use it in GitHub Desktop.

Select an option

Save mediaupstream/1113256 to your computer and use it in GitHub Desktop.
jQuery.eachStep - The Solution
// Add the class '.rotate' to every image in order
$('img').each(function(i, el) {
window.setTimeout(function(){
$(el).addClass('animate');
}, 400 * i);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment