关于wow.js个参数的详解

1.从哪里下载插件?
animate.css 下载地址: http://daneden.github.io/animate.css/
wow.min.js 下载地址: http://www.downyi.com/downinfo/37040.html#address

  2.如何使用?

  <link rel="stylesheet" href="css/animate.css">

<script src="js/wow.min.js"></script>

<script>
   new WOW().init();
</script>
a)哪里想使用动画就是那里的类加 class="wow + animate"
wow.js具体的参数:
data-wow-duration="2s"//动画持续时间
data-wow-delay="2s"//动画延迟执行时间
data-wow-offset="2"//距可视区多远开始执行动画
data-wow-iteration="2"//动画执行的次数
3.查看动画样式的地址:
http://daneden.github.io/animate.css/
4.wow.js 源码网址: http://www.bootcdn.cn/wow/
原文地址:https://www.cnblogs.com/cclhtml/p/6387829.html