我正在尝试将动画设置为#Element,但动画仅在我使用“无限”字时才有效:
animation: AnimationName 1s linear 0s infinite normal both !important;
当我使用数字代替“无限”
时,它不起作用我想只播放一次动画。 我也试过了下一个代码:
#Element
{
animation-name: ANIMATION !important;
animation-duration: .5s !important;
animation-iteration-count: infinite !important;
}
@-moz-keyframes ANIMATION {
0% { background: GREEN; }
100% { background: RED; }
}
@keyframes ANIMATION {
0% { background: RED; }
100% { background: GREEN; }
}
我在Firefox Nightly 22.0a1(2013-03-23)上使用它