css 悬停动画(正确方式)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 悬停动画(正确方式)相关的知识,希望对你有一定的参考价值。
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
// alert('Hello world!');
<div ontouchstart="">Hover over me and watch me spin!</div>
/**
* Animation on hover (right way)
*/
div {
width: 9em;
padding: .6em 1em;
margin: 2em auto;
background: yellowgreen;
animation: spin 1s linear infinite;
animation-play-state: paused;
}
@keyframes spin {
to {
transform: rotate(1turn);
}
}
div:hover {
animation-play-state: running;
}
以上是关于css 悬停动画(正确方式)的主要内容,如果未能解决你的问题,请参考以下文章
悬停效果闪烁的 CSS 动画,在 FF 中未正确显示
css 悬停时的动画(错误的方式)
无法让 CSS 悬停动画工作
悬停时停止 CSS 动画
CSS动画:悬停和悬停
css CSS动画悬停 - 菜单悬停的效果