小编典典

在Firefox中转换背景图像?

css

我正在尝试为此寻找替代方案:

"transition:background-image 1s whatever"

firefox中, 因为它仅适用于webkit浏览器。

我已经尝试过不透明度选项,但是那对我来说不是一个选择,因为我在背景容器中有内容,如果使用不透明度,它将与背景一起消失。

谢谢。


阅读 284

收藏
2020-05-16

共1个答案

小编典典

您可以使用2个伪元素来做到这一点

CSS

.test
{
    width: 400px;
    height: 150px;
    position: relative;
    border: 1px solid green;
}

.test:before, .test:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
}
.test:before {
    background-color: red;
    z-index: 1;
    transition: opacity 1s;
}

.test:after {
    background-color: green;
}

.test:hover:before {
    opacity: 0;
}

(悬停过渡)

为了能够看到div的内容,伪元素必须位于负的z-index中:

看起来IE不会触发此悬停

.test:hover:before {
    opacity: 0;
}

但会触发这一

.test:hover {
}
.test:hover:before {
    opacity: 0;
}
2020-05-16