【发布时间】:2017-02-18 02:12:13
【问题描述】:
.box {
width: 100px;
height: 100px;
background: red;
transition: all 1s ease-in-out;
}
.box:hover {
background: yellow;
}
<div class="box"></div>
如果光标在 .box 上停留的时间少于一秒,则过渡停止并返回到其原始阶段。 有没有办法以某种方式强制整个动画,而不考虑悬停持续时间?
【问题讨论】: