很简单的前提。我有一个浮动图像,我想揭示它背后的图像。在 chrome 中工作正常,但在 FF 11 中不行。
$("#floater").fadeOut("slow");
<div id="bg-image">
<img id="bg-photo" class="photo" src="../images/blackberry.jpg" alt=""/>
<img id="floater" class="floater" src="../images/blackberry_flash.jpg" alt="" />
</div>
#bg-image .photo
{
width: 100%;
min-width: 1284px;
}
#container {
width:100%;
min-width:950px;
margin-top:-13px;
}
#floater {
position:fixed;
z-index:4;
top:200px;
left:200px;
}
不是只是淡出以显示 z-index 0 处的图像,而是将该区域淡化为黑色。我的背景是白色的,没有其他 CSS 可以真正干扰。