animate.css+wow.js页面滚动即时显示动画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了animate.css+wow.js页面滚动即时显示动画相关的知识,希望对你有一定的参考价值。

1、地址引入

<link href="css/animate.min.css" rel="stylesheet" type="text/css">
<script src="js/wow.min.js" type="text/javascript"></script>

2、html部分

 <div class="animated bounceInRight wow" data-wow-delay="0.4s" style="visibility: visible;animation-delay: 0.4s"></div>

注:bounceInRight为animate.css中的动画方式,具体可见官方API给出的示例:https://daneden.github.io/animate.css

3、wow.js初始化代码

<script type="text/javascript">
    new WOW().init();
</script>

注:以下是一些自定义配置:

var wow = new WOW({  
    boxClass: ‘wow‘,  
    animateClass: ‘animated‘,  
    offset: 0,  
    mobile: true,  
    live: true  
});  
wow.init(); 

 

  

 

以上是关于animate.css+wow.js页面滚动即时显示动画的主要内容,如果未能解决你的问题,请参考以下文章

用wow.js实现页面滚动时触发animate.css动画特效

Vue+wow.js+animate.css-实现页面滚动可视区域动画效果展示-案例

wow.js

ScrollReveal-元素随页面滚动产生动画的js插件

wow.js使用教程

WOW.js 动画使用