美文网首页
让网页内容弹入的库wow.js

让网页内容弹入的库wow.js

作者: 王三准wsz | 来源:发表于2019-08-03 11:12 被阅读0次

1、官网地址:https://www.delac.io/wow/

2、下载地址:https://github.com/matthieua/WOW

3、示例网站:http://www.jq22.com/demo/jQueryMoban201704060136/

使用方法:

1、引入文件:

 <link rel="stylesheet" href="css/animate.min.css">

2、HTML:

<divclass="wow slideInLeft"></div>

<divclass="wow slideInRight"></div>

  可以加入 data-wow-duration(动画持续时间)和 data-wow-delay(动画延迟时间)属性,如:

   <divclass="wow slideInLeft"data-wow-duration="2s"data-wow-delay="5s"></div>

   <divclass="wow slideInRight"data-wow-offset="10"data-wow-iteration="10"></div>

3、JavaScript:
    new WOW().init();

     如果需要自定义配置,可如下使用:

     varwow = newWOW({

         boxClass: 'wow',

         animateClass: 'animated',

         offset: 0,

          mobile: true,

          live: true

       });

       wow.init();

   jq插件库地址:http://www.jq22.com/jquery-info1705

相关文章

网友评论

      本文标题:让网页内容弹入的库wow.js

      本文链接:https://www.haomeiwen.com/subject/ehfjdctx.html