码迷,mamicode.com
首页 > Web开发 > 详细

WOW.js和animate.css让页面滚动时显示动画

时间:2018-05-17 11:55:02      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:配置   jquer   html   nbsp   wow   距离   htm   query   var   

官网:http://mynameismatthieu.com/WOW/

bootstrap CDN服务:http://www.bootcdn.cn/wow/

1.wow.js

实现了在网页滚动时的动画效果,有漂亮的动画效果,依赖于Animate.css。

2.Animate.css (下载https://daneden.github.io/animate.css/)
非常优秀的CSS3动画库,不依赖于jQuery,纯CSS动画


使用方法

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>  

 

3、javascript

new WOW().init();  

 

如果需要自定义配置,可如下使用:
[javascript] view plain copy
var wow = new WOW({  
    boxClass: ‘wow‘,  
    animateClass: ‘animated‘,  
    offset: 0,  
    mobile: true,  
    live: true  
});  
wow.init();  


配置
属性/方法 类型 默认值 说明
boxClass 字符串 ‘wow’ 需要执行动画的元素的 class
animateClass 字符串 ‘animated’ animation.css 动画的 class
offset 整数 0 距离可视区域多少开始执行动画
mobile 布尔值 true 是否在移动设备上执行动画
live 布尔值 true 异步加载的内容是否有效

WOW.js和animate.css让页面滚动时显示动画

标签:配置   jquer   html   nbsp   wow   距离   htm   query   var   

原文地址:https://www.cnblogs.com/aimyfly/p/9049322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!