Skip to content

Instantly share code, notes, and snippets.

@acepek
Created October 2, 2013 15:55
Show Gist options
  • Save acepek/6795957 to your computer and use it in GitHub Desktop.
Save acepek/6795957 to your computer and use it in GitHub Desktop.
cascade fade in
var items = $('#diagram *').not('#architecture *');
items.fadeOut(0);
$(items).each(function(i){
$(this).delay(i*100).fadeIn();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment