如何用jQuery封装animate.css代码
程序员文章站
2022-04-12 22:16:34
...
这次给大家带来如何用jQuery封装animate.css代码,用jQuery封装animate.css代码的注意事项有哪些,下面就是实战案例,一起来看一下。
animate.css是一个有趣的,跨浏览器的css3动画库。
一、首先引入animate css文件
<link rel="stylesheet" href="animate.css" rel="external nofollow" >
二、给指定的元素加上指定的动画样式名
<p id="box" class="animated bounce"></p>
这里包括两个class名,第一个是基本的,必须添加的样式名,任何想实现的元素都得添加这个。第二个是指定的动画样式名。
三、如果说想给某个元素动态添加动画样式,可以通过jquery来实现
给动画对象添加类,然后监听动画结束事件,一旦监听到动画结束,立即移除前面添加的类。
官方给出了jQuery的封装:
//扩展$对象,添加方法animateCss $.fn.extend({ animateCss: function (animationName) { var animationEnd = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend'; $(this).addClass('animated ' + animationName).one(animationEnd, function() { $(this).removeClass('animated ' + animationName); }); } }); //调用示例: $('#box').animateCss('bounce');
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是如何用jQuery封装animate.css代码的详细内容,更多请关注其它相关文章!
上一篇: Python基础入门--函数
下一篇: python用什么读取excel