gpt4 book ai didi

css - 仅使用 CSS3 在悬停时旋转并在动画后停止?

转载 作者:太空宇宙 更新时间:2023-11-04 04:51:23 24 4
gpt4 key购买 nike

我看过这篇文章// Slide out text from an image using CSS on hover

CSS 完美运行,除了我希望动画在旋转一次后停止。

这可能吗?如果可以,我该如何实现?

HTML:

@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(180deg);
}
to {
-webkit-transform: rotate(0deg);
}
}

@-moz-keyframes rotate {
from {
-moz-transform: rotate(180deg);
}
to {
-moz-transform: rotate(0deg);
}
}

.srch_btn:hover {
-webkit-animation-name: rotate;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;

-moz-animation-name: rotate;
-moz-animation-duration: 0.5s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
}

最佳答案

animation-iteration-count: infinite 更改为 2

关于css - 仅使用 CSS3 在悬停时旋转并在动画后停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13409997/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com