在Firefox中转换背景图像?

时间:2013-11-06 09:51:25

标签: html css css3 firefox

我正在努力寻找替代方案:

"transition:background-image 1s whatever"

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

我已经尝试了不透明度替代品,但这对我来说不是一个选项,因为我在背景容器上有内容,如果使用不透明度,它将与背景一起消失。

谢谢。

4 个答案:

答案 0 :(得分:12)

你可以使用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;
}

fiddle with real images

(悬停过渡)

为了能够看到div内容,伪元素需要在负z-index中:

fiddle with corrected z-index

看起来IE不会触发此悬停

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

但会触发这个

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

(看似SILLY)

fiddle for IE10

答案 1 :(得分:0)

使用悬停的最简单解决方案

 

.self-pic {
    height: 350px;
    width: 350px;
    position: relative;
    border-radius: 1rem;
}

img {
    position: absolute;
    left: 0;
    transition: opacity, 1s;
}

img.front:hover {
    opacity: 0;
}

 
<div id="self-pic">
  <img class="back" src="https://source.unsplash.com/random/350*350" />
  <img class="front" src="https://source.unsplash.com/random/351*351" />
</div>

答案 2 :(得分:-1)

#id_of_element {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

这不是吗?只需将all更改为background-image。

答案 3 :(得分:-1)

确实有效

您可以在此处查看:http://dabblet.com/gist/1931619

但显然Firefox还没有实现它。