jAnimate jQuery 插件开源项目

我要开发同款
匿名用户2015年04月13日
98阅读
开发技术JavaScriptHTML/CSS
所属分类其他jQuery插件、jQuery插件
授权协议MIT

作品详情

jAnimate是一款帮助你在jQuery中使用Animate.css的插件。如果你想立刻中止动画效果,且保持该状态不变的话,推荐使用jAnimate。

示例:

<!DOCTYPE html><head>  <meta charset="utf-8">  <title>janimate example</title>  <link rel="stylesheet" href="https://cdn.rawgit.com/daneden/animate.css/master/animate.css"></head><body>  <h1>Hello jAnimate</h1>  <button class="e1">swing</button>  <button class="e2">shake</button>  <button class="e3">fadeOut</button>  <button class="e4">fadeIn</button>  <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>  <script src="https://cdn.rawgit.com/renatorib/janimate/master/dist/janimate.min.js"></script>  <script type="text/javascript">      $(document).ready(function(){        $('.e1').click(function(){          $('h1').jAnimateOnce('swing');        });        $('.e2').click(function(){          $('h1').jAnimateOnce('shake');        });        $('.e3').click(function(){          $('h1').jAnimate('fadeOut');        });        $('.e4').click(function(){          $('h1').jAnimate('fadeIn', function(self, effect){            alert(effect + ' finish');          });        });      });  </script></body> 
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论