CSS Webkit 过渡 - 淡出速度比淡入速度慢
这就是我所拥有的:
.box{
background:#FFF;
-webkit-transition: background 0.5s;
}
.box:hover{
background:#000;
}
但这会附加到 onmouseover 和 onmouseout 操作,但没有办法控制它们吗?像这样的东西:
-wekbkit-transition-IN: background 1s;
-webkit-transition-OUT: background 10s;
This is what I have:
.box{
background:#FFF;
-webkit-transition: background 0.5s;
}
.box:hover{
background:#000;
}
But this appends to both onmouseover and onmouseout actions, but isn't there a way to control them? Something like:
-wekbkit-transition-IN: background 1s;
-webkit-transition-OUT: background 10s;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需重新定义 over 伪元素中的转换即可。
看看我的http://jsfiddle.net/DoubleYo/nY8U8/
Just redifine your transition in the over pseudo element.
Look my http://jsfiddle.net/DoubleYo/nY8U8/
要么使用 动画(目前仅在 webkit 中),或者使用 JS 添加和删除属性,他们仍然会活跃起来。
Either use an animation (only in webkit currently), or use JS to add and remove the properties, they will still animate.