-webkit-animation动画有三个事件:
开始事件: webkitAnimationStart
结束事件: webkitAnimationEnd
重复运动事件: webkitAnimationIteration
所以:
var animationEnd=function(){
var explorer=navigator.userAgent;
if(~explorer.indexOf('WebKit')){
return 'webkitAnimationEnd';
}
return 'animationend';
}();
开始事件: webkitAnimationStart
结束事件: webkitAnimationEnd
重复运动事件: webkitAnimationIteration
所以:
var animationEnd=function(){
var explorer=navigator.userAgent;
if(~explorer.indexOf('WebKit')){
return 'webkitAnimationEnd';
}
return 'animationend';
}();
2018-01-15
有没有这个属性的详解啊 'transform': 'translate3d(-' + (width * 2) + 'px,0px,0px)'
2017-11-08