Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@janily
Created December 11, 2016 10:49
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 janily/17e3a9dbba0d7fe87b2c019f16697382 to your computer and use it in GitHub Desktop.
Save janily/17e3a9dbba0d7fe87b2c019f16697382 to your computer and use it in GitHub Desktop.
配合animate.css里面的动画效果来制作列表动画
$(".mod-choose p").each(function (i) {
$(this).attr("style", "-webkit-animation-delay:" + i * 250 + "ms;"
+ "animation-delay:" + i * 250 + "ms;");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment