可能重复:
Webkit CSS Animation issue - persisting the end state of the animation?
我的CSS动画效果非常好。至少在他们完成所有事情之后,一切都粗鲁地回到原来的位置。如何让动画元素保持其动画后位置?
编辑代码:
.some_class
{
-webkit-animation-name: this_animation;
-webkit-animation-duration: 2s;
-webkit-animation-play-state: active;
}
@-webkit-keyframes this_animation
{
from {top:0px;}
to {top:50px;}
}
编辑:终于找到了答案:
Webkit CSS Animation issue - persisting the end state of the animation?