有的页面在向下滚动的时候,有些元素会产生细小的动画效果。虽然动画比较小,但却能吸引你的注意。比如刚刚发布的 iPhone 6 的页面(查看)。如果你希望你的页面也更加有趣,那么你可以试试 WOW.js。
WOW.js 依赖 animate.css,所以它支持 animate.css 多达 60 多种的动画效果,能满足您的各种需求。
html引用方式:
<div class="row wow fadeInUp" data-wow-duration="1s" data-wow-delay="1s">
js的引用方式:
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <script src="js/bootstrap.min.js"> </script> <script src="js/wow.min.js"> </script> <script> $(function(){new WOW().init();}) </script>