图标旋转3-4秒,但不是连续在hovering.Now上,它是旋转后,添加的变化。请帮帮忙。
发布于 2021-03-19 13:20:59
试试这个,我希望这对你有用
<!DOCTYPE html>
<html>
<head>
<style>
i:hover {
animation: rotation 3s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
<title>My Project</title>
</head>
<body>
<div>
<i class="fa fa-times"/>
</div>
</body>
</html>https://stackoverflow.com/questions/66708934
复制相似问题