WOW.js 动画使用
Posted 不积跬步无以至千里不积小流无以成江海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WOW.js 动画使用相关的知识,希望对你有一定的参考价值。
有的页面在向下滚动的时候,有些元素会产生细小的动画效果。虽然动画比较小,但却能吸引你的注意。比如刚刚发布的 iPhone 6 的页面(查看)。如果你希望你的页面也更加有趣,那么你可以试试 WOW.js。
WOW.js 依赖 animate.css,所以它支持 animate.css 多达 60 多种的动画效果,能满足您的各种需求。
<script> if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))){ new WOW().init(); }; </script>
1、引入文件使用方法
<link rel="stylesheet" href="css/animate.min.css">
2、html
<div class="wow slideInLeft"></div> <div class="wow slideInRight"></div>
可以加入 data-wow-duration(动画持续时间)和 data-wow-delay(动画延迟时间)属性,如:
<div class="wow slideInLeft" data-wow-duration="2s" data-wow-delay="5s"></div> <div class="wow slideInRight" data-wow-offset="10" data-wow-iteration="10"></div>
class="wow sildeInLeft" 这个表示就可以了,data-wow-duration=“2s”,
data-wow-delay="5s" 上图中的类名,以及后面的style样式都是动画执行过了,代码里面的显示的样子。
3、javascript
new WOW().init();
如果需要自定义配置,可如下使用:
var wow = new WOW({ boxClass: \'wow\', animateClass: \'animated\', offset: 0, mobile: true, live: true }); wow.init();
配置
以上是关于WOW.js 动画使用的主要内容,如果未能解决你的问题,请参考以下文章