作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
即使在鼠标移开后如何设置我的悬停效果稳定??? 代码工作正常,但在鼠标移出 div 元素后 原始状态??
html
<div id="sme"></div>
CSS
#sme{
width: 400px;
height: 400px;
border: 20px solid #06c999;
/* Rotate */
}
#sme:hover{
transition: all 1.9s ease;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
最佳答案
需要考虑的是使用动画播放状态。然而,副作用是当您在动画尚未完成时移开鼠标,动画将暂停。
#sme {
width: 400px;
height: 400px;
border: 20px solid #06c999;
animation: rotatebox 2s ease forwards;
animation-play-state: paused;
}
#sme:hover {
animation-play-state: running;
}
@keyframes rotatebox {
100% {
transform: rotate(180deg);
}
}
<div id="sme">A</div>
关于html - 如何在鼠标移开后保持稳定的悬停效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44918509/
我这里有个场景,有一个div父元素。它的 css 值为 overflow:auto。当用户继续添加多个元素时,overflow 有效,但滚动条的尺寸变小了。 (这很常见!) 我在看的是,我不想让我的滚
我是一名优秀的程序员,十分优秀!