Skip to content

Instantly share code, notes, and snippets.

@chadhietala
Created August 21, 2011 02:07
Show Gist options
  • Save chadhietala/1159995 to your computer and use it in GitHub Desktop.
Save chadhietala/1159995 to your computer and use it in GitHub Desktop.
animate in one by one
$('.tag').each(function(i) {
setTimeout(function() {
$('.tag:eq('+i+')').css({ display: 'block', opacity: 0 }).stop().animate({ opacity: 1 }, 'easeInOutExpo');
}, 250 * (i + 1))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment