jquery判断css3动画是否完成的方法
//添加css3动画
$('.p1title01, .p1title02').addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function () {
//css3动画播放完了 再移除
$('.p1title01, .p1title02').removeClass('shake animated');
});
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/18903.html