CSS Webkit 过渡 - 淡出速度比淡入速度慢

发布于 2024-11-01 04:57:48 字数 349 浏览 0 评论 0原文

这就是我所拥有的:

.box{
    background:#FFF;
    -webkit-transition: background 0.5s;
}

.box:hover{
    background:#000;
}

但这会附加到 onmouseoveronmouseout 操作,但没有办法控制它们吗?像这样的东西:

-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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恰似旧人归 2024-11-08 04:57:49

只需重新定义 over 伪元素中的转换即可。

.box{
    background: white;
    -webkit-transition: background 5s;
}
.box:hover{
    background: olive;
    -webkit-transition: background 1s;
}

看看我的http://jsfiddle.net/DoubleYo/nY8U8/

Just redifine your transition in the over pseudo element.

.box{
    background: white;
    -webkit-transition: background 5s;
}
.box:hover{
    background: olive;
    -webkit-transition: background 1s;
}

Look my http://jsfiddle.net/DoubleYo/nY8U8/

攒一口袋星星 2024-11-08 04:57:49

要么使用 动画(目前仅在 webkit 中),或者使用 JS 添加和删除属性,他们仍然会活跃起来。

Either use an animation (only in webkit currently), or use JS to add and remove the properties, they will still animate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文