如何使用js启动CSS动画? 第一行(webkitAnimation)有效但其他行则无效。
anim_logo.style.webkitAnimation="threesixty 3s";
anim_logo.style.mozAnimation="threesixty 3s";
anim_logo.style.oAnimation="threesixty 3s";
anim_logo.style.animation="threesixty 3s";
为什么?
live preview(点击Ninja Star)
答案 0 :(得分:5)
您最好使用该动画创建一个单独的类,并在需要时将其附加到您的元素:
anim_logo.setAttribute("class", yourAnimationClass);
<强>更新强>
要删除新添加的课程,您可以使用延迟功能:
function animateMe() {
anim_logo.setAttribute( "class", yourAnimationClass );
setTimeout( function() {
anim_logo.setAttribute( "class", "" );
}, 3000);
}