【问题标题】:CSS transition fails for background-image url背景图像 url 的 CSS 转换失败
【发布时间】:2015-04-11 01:55:28
【问题描述】:
在Fade Effect on Link Hover? 上找到的以下示例
我做了这个:http://jsfiddle.net/felipelalli/ns9d1vug/
<div class="fade"/>
.fade {
-o-transition: 0.3s;
-moz-transition: 0.3s;
-khtml-transition: 0.3s;
-webkit-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
width:128px;height:128px;
background:url('http://nuclearpixel.com/content/icons/2010-02-09_stellar_icons_from_space_from_2005/earth_128.png')
}
.fade:hover {
color: #b50000;
width:128px;height:128px;
background:url('http://upload.wikimedia.org/wikipedia/commons/b/b2/Crystal_128_babelfish.png')
}
为什么它在 Chrome 中运行良好,但在 Firefox 中运行良好?
【问题讨论】:
标签:
html
css
firefox
css-transitions
【解决方案1】:
它在 FF 中不起作用,因为 Firefox 不支持转换背景图像,只支持背景颜色。
如果要过渡背景图片,请使用两个单独的<div>:
.fade div {
-o-transition: 0.3s;
-moz-transition: 0.3s;
-khtml-transition: 0.3s;
-webkit-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
width:128px;
height:128px;
position:absolute;
top:0;
left:0;
}
.fade{
position:relative;
width:128px;
height:128px;
}
.backone{
z-index:1;
background:url('http://nuclearpixel.com/content/icons/2010-02-09_stellar_icons_from_space_from_2005/earth_128.png');
}
.backtwo{
background:url('http://upload.wikimedia.org/wikipedia/commons/b/b2/Crystal_128_babelfish.png');
opacity:0;
z-index:5;
}
.fade:hover .backtwo{
opacity:1;
}
.fade:hover .backone{
opacity:0;
}
<div class="fade">
<div class="backone"></div>
<div class="backtwo"></div>
</div>