我有一个关键帧动画,改变颜色后,某些事件,但我不知道如何停止动画后,事件完成?
HTML(仅用于调用事件):
<div id="prt1"></div>
<div id="prt2"></div>
<div id="prt3"></div>
CSS(仅样式和关键帧动画):
#prt1 {
height:20%;
width:5%;
border:1px solid black;
top:50%;
left:0%;
animation:prt1 2s infinite;
-webkit-animation:prt1 2s infinite;
display:none;
}
@keyframes prt1 {
0% {background-color:white;}
33% {background-color:black;}
66% {background-color:white;}
100% {background-color:white;}
}
@-webkit-keyframes prt1 {
0% {background-color:white;}
33% {background-color:black;}
66% {background-color:white;}
100% {background-color:white;}
}
#prt2 {
height:30%;
width:5%;
border:1px solid black;
left:0%;
top:50%;
animation:prt2 2s infinite;
-webkit-animation:prt2 2s infinite;
display:none;
}
@keyframes prt2 {
0% {background-color:white;}
33% {background-color:white;}
66% {background-color:black;}
100% {background-color:white;}
}
@-webkit-keyframes prt2 {
0% {background-color:white;}
33% {background-color:white;}
66% {background-color:black;}
100% {background-color:white;}
}
#prt3 {
height:49%;
width:5%;
border:1px solid black;
left:0%;
top:50%;
animation:prt3 2s infinite;
-webkit-animation:prt3 2s infinite;
display:none;
}
@keyframes prt3 {
0% {background-color:white;}
33% {background-color:white;}
66% {background-color:white;}
100% {background-color:black;}
}
@-webkit-keyframes prt3 {
0% {background-color:white;}
33% {background-color:white;}
66% {background-color:white;}
100% {background-color:black;}
}
4条答案
按热度按时间wyyhbhjk1#
您需要设置
animation-iteration-count
:有关更多详细信息,请参阅:
https://developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count
...以及:
http://css-tricks.com/snippets/css/keyframe-animation-syntax/
您提供的有关问题的信息非常有限。此解决方案可能不是您要查找的解决方案。请为您的问题添加更多详细信息,如有必要,我将更新此答案。
供应商前缀:* 您可以添加供应商前缀(-webkit-、-moz-、-o-),例如
-webkit-animation-iteration-count: 1;
,以获得浏览器支持,并针对特定浏览器设置自定义值。*1szpjjfi2#
无限的反义词是向前。
siotufzp3#
把@user7253564和@MarkusHofmann的答案合并起来。对于将来访问这个网站的人。
对我的案例有效的方法是:
animation-iteration-count: 1
无法在关键帧结束后停止动画。应使用
animation-fill-mode: forwards;
而不是animation-iteration-count
在关键帧循环结束后停止动画。有关
animation
属性here的信息,请参见MDN参考有关
animation-fill-mode
属性here,请参见MDN参考希望这能帮助到需要帮助的人。
fxnxkyjh4#
在我的例子中,我使用了
animationPlayState
属性来暂停它。$("#animatedDiv").css("animationPlayState","paused");