Skip to content

Instantly share code, notes, and snippets.

@remcorakers
Last active December 27, 2015 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remcorakers/7384280 to your computer and use it in GitHub Desktop.
Save remcorakers/7384280 to your computer and use it in GitHub Desktop.
if (!$.support.transition) {
$.fn.transition = $.fn.animate;
}
$("#step1").transition({opacity: 1}, 1000);
$("#step2").delay(1000).transition({opacity: 1}, 1000);
$("#step3").delay(2000).transition({opacity: 1}, 1000);
$("#step4").delay(3000).transition({opacity: 1}, 1000);
$("#step5").delay(4000).transition({opacity: 1}, 1000);
$("#step6").delay(5000).transition({opacity: 1}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment