您好,欢迎访问一九零五行业门户网

让页面动起来的WOW.js

这次给大家带来让页面动起来的wow.js,让页面动起来的wow.js的注意事项有哪些,下面就是实战案例,一起来看一下。
## 简介有的页面在向下滚动的时候,有些元素会产生细小的动画效果。虽然动画比较小,但却能吸引你的注意。比如刚刚发布的 iphone 6 的页面(查看)。如果你希望你的页面也更加有趣,那么你可以试试 wow.js。 wow.js 依赖 [animate.css](http://www.dowebok.com/98.html "animate.css – 齐全的css3动画库"),所以它支持 animate.css 多达 60 多种的动画效果,能满足您的各种需求。## 浏览器兼容| ![ie](http://upload-images.jianshu.io/upload_images/7001495-d1498e252dc65170.png?imagemogr2/auto-orient/strip%7cimageview2/2/w/1240 "ie") | ![chrome](http://upload-images.jianshu.io/upload_images/7001495-200a062811a86de9.png?imagemogr2/auto-orient/strip%7cimageview2/2/w/1240 "chrome") | ![firefox](http://upload-images.jianshu.io/upload_images/7001495-7f10002341e8ae18.png?imagemogr2/auto-orient/strip%7cimageview2/2/w/1240 "firefox") | ![opera](http://upload-images.jianshu.io/upload_images/7001495-368da504ba5af174.png?imagemogr2/auto-orient/strip%7cimageview2/2/w/1240 "opera") | ![safari](http://upload-images.jianshu.io/upload_images/7001495-ec11892237adb9ad.png?imagemogr2/auto-orient/strip%7cimageview2/2/w/1240 "safari") | | --- | --- | --- | --- | --- | | ie10+ [图片上传失败...(image-85fa2d-1517475588948)] | chrome [图片上传失败...(image-be4ec6-1517475588948)] | firefox [图片上传失败...(image-a5ddfd-1517475588948)] | opera [图片上传失败...(image-508f1e-1517475588948)] | safari [图片上传失败...(image-5c656e-1517475588948)] | ie6、ie7 等老旧浏览器不支持 css3 动画,所以没有效果;而 wow.js 也使用了 queryselectorall 方法,ie 低版本会报错。为了达到更好的兼容,最好加一个浏览器及版本判断。## 使用方法### 1、引入文件<pre class="brush:xml" style="margin: 0px; padding: 10px; max-height: 400px; border: 1px solid rgb(240, 240, 240); font-style: normal; font-variant: normal; font-weight: 400; font-stretch: normal; font-size: 13px; line-height: 24px; font-family: consolas, &quot;lucida sans typewriter&quot;, &quot;lucida console&quot;, monaco, &quot;bitstream vera sans mono&quot;, monospace; background-color: rgb(248, 248, 248); overflow: auto; color: rgb(102, 102, 102); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><link rel="stylesheet" href="css/animate.min.css"></pre>### 2、html<pre class="brush:xml" style="margin: 0px; padding: 10px; max-height: 400px; border: 1px solid rgb(240, 240, 240); font-style: normal; font-variant: normal; font-weight: 400; font-stretch: normal; font-size: 13px; line-height: 24px; font-family: consolas, &quot;lucida sans typewriter&quot;, &quot;lucida console&quot;, monaco, &quot;bitstream vera sans mono&quot;, monospace; background-color: rgb(248, 248, 248); overflow: auto; color: rgb(102, 102, 102); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><div class="wow slideinleft"></div> <div class="wow slideinright"></div></pre> 可以加入 data-wow-duration(动画持续时间)和 data-wow-delay(动画延迟时间)属性,如: <pre style="margin: 0px; padding: 10px; max-height: 400px; border: 1px solid rgb(240, 240, 240); font-style: normal; font-variant: normal; font-weight: 400; font-stretch: normal; font-size: 13px; line-height: 24px; font-family: consolas, &quot;lucida sans typewriter&quot;, &quot;lucida console&quot;, monaco, &quot;bitstream vera sans mono&quot;, monospace; background-color: rgb(248, 248, 248); overflow: auto; color: rgb(102, 102, 102); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><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></pre>### 3、javascript<pre class="brush:js" style="margin: 0px; padding: 10px; max-height: 400px; border: 1px solid rgb(240, 240, 240); font-style: normal; font-variant: normal; font-weight: 400; font-stretch: normal; font-size: 13px; line-height: 24px; font-family: consolas, &quot;lucida sans typewriter&quot;, &quot;lucida console&quot;, monaco, &quot;bitstream vera sans mono&quot;, monospace; background-color: rgb(248, 248, 248); overflow: auto; color: rgb(102, 102, 102); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">new wow().init();</pre> 如果需要自定义配置,可如下使用: <pre class="brush:js" style="margin: 0px; padding: 10px; max-height: 400px; border: 1px solid rgb(240, 240, 240); font-style: normal; font-variant: normal; font-weight: 400; font-stretch: normal; font-size: 13px; line-height: 24px; font-family: consolas, &quot;lucida sans typewriter&quot;, &quot;lucida console&quot;, monaco, &quot;bitstream vera sans mono&quot;, monospace; background-color: rgb(248, 248, 248); overflow: auto; color: rgb(102, 102, 102); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">var wow = new wow({ boxclass: 'wow', animateclass: 'animated', offset: 0, mobile: true, live: true}); wow.init();</pre>## 配置| 属性/方法 | 类型 | 默认值 | 说明 | | --- | --- | --- | --- | | boxclass | 字符串 | ‘wow’ | 需要执行动画的元素的 class | | animateclass | 字符串 | ‘animated’ | animation.css 动画的 class | | offset | 整数 | 0 | 距离可视区域多少开始执行动画 | | mobile | 布尔值 | true | 是否在移动设备上执行动画 | | live | 布尔值 | true | 异步加载的内容是否有效 |
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
相关阅读:
怎么解决ie11的textarea不换行这个bug
基于jquery的一个懒加载组件
webstorm怎么自定义用户设置
以上就是让页面动起来的wow.js的详细内容。
其它类似信息

推荐信息