如果你查看我的代码并运行它。
@-webkit-keyframes circle {
from { transform:rotate(0deg); }
to { transform:rotate(180deg); }
}
@-webkit-keyframes inner-circle {
from { transform:rotate(0deg); }
to { transform:rotate(-180deg); }
}
#one {
position: absolute;
left: 500px;
top: 200px;
width:100px;
height:100px;
border-radius: 50px;
background-color: #000000;
}
#two {
width:100px;
height:100px;
margin: 0px auto 0;
color:orange;
font-size:100px;
line-height:1;
transform-origin:50% 200px;
}
#one:hover > div {
animation: circle 1s linear infinite;
-webkit-animation: circle 1s linear infinite;
}
#one:hover > div > div {
animation: inner-circle 1s linear infinite;
-webkit-animation: inner-circle 1s linear infinite;
}
</style>
<div id="one">
<div id="two"><div id="three">☻</div></div>
</div>
你会注意到笑脸继续循环旋转180度的动画。我不想要这个。每次我将鼠标悬停在黑色圆圈上时,我只想让它做一次动画。我该怎么做?
答案 0 :(得分:3)
如果您不希望动画无限发生,请从动画速记中删除infinite
。
此外,您还需要添加forwards
才能prevent the animation from resetting each time。将forwards
添加到动画速记中时,您实际上是将属性animation-fill-mode
从默认值none
更改为forwards
。
animation-fill-mode
CSS属性指定CSS动画在执行之前和之后应如何将样式应用于目标。
#one:hover > div {
animation: circle 1s linear forwards;
-webkit-animation: circle 1s linear forwards;
}
#one:hover > div > div {
animation: inner-circle 1s linear forwards;
-webkit-animation: inner-circle 1s linear forwards;
}
答案 1 :(得分:-1)
将所有无限值更改为您希望动画循环的次数。在你的情况下,它将是一次,所以你想将无限变为1。