jQuery封装animate.css的实例
animate.css是一个有趣的,跨浏览器的css3动画库。
一、首先引入animate css文件
<link rel="stylesheet" href="animate.css" rel="external nofollow" >
二、给指定的元素加上指定的动画样式名
<div id="box" class="animated bounce"></div>
这里包括两个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');
相关推荐
tztzyzyz 2020-07-05
87281248 2020-07-04
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20