gpt4 book ai didi

html - CSS 背景图像淡入淡出过渡仅适用于 Chrome

转载 作者:行者123 更新时间:2023-11-28 06:17:22 25 4
gpt4 key购买 nike

HTML:

<a class="navbar-brand page-scroll" href="#intro"></a>

CSS:

.navbar-custom .nav li a.navbar-brand {
width: 70px;
height: 62px;
background: url(myimg.png) no-repeat;
background-size: 70px 62px;
display: block;
position: relative;
text-indent: -9999px;
-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-o-transition: all .2s linear;
-ms-transition: all .2s linear;
transition: all .2s linear;
}
.navbar-custom .nav li a.navbar-brand:hover {
background: url(myimghover.png) no-repeat;
}

悬停效果在所有浏览器中都能正常工作,但过渡效果仅在谷歌浏览器中有效,我真的无法解释原因。我已经尝试过使用 sprite 图像和伪元素悬停,但我的图像具有透明背景,因此在悬停时,“底部”图像仍然部分可见。有什么想法吗?

提前致谢。问候,J.

最佳答案

尝试

-webkit-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
-o-transition-duration: 0.2s;
transition-duration: 0.2s;

关于html - CSS 背景图像淡入淡出过渡仅适用于 Chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35815518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com