gpt4 book ai didi

css - 具有透明度的背景 Sprite 随 :hover and :active overlays instead of redraws 发生变化

转载 作者:太空宇宙 更新时间:2023-11-04 15:53:02 25 4
gpt4 key购买 nike

好吧,所以这只是我为一个元素所做的测试示例(未完善)。假设您将一张用于导航的图像设置为元素的背景,该图像具有透明度,并且当它发生变化时,图像的可见部分会减少。

我正在使用 iceweasel 10,当我这样做时, Sprite 的“缩小”版本只是绘制在之前的背景之上。这意味着先前的背景在较小 Sprite 的外部仍然可见。

这可以通过为 :active 指定背景颜色和新图像 Sprite 来“修复”,但是如何保持透明度呢?如果背景不是纯色(或已知)怎么办?

Here is the issue demonstrated在 html 中。 Here is the png用于 Sprite 。

这是我的浏览器渲染引擎的产物,还是 CSS 的标准?谢谢。

最佳答案

您的问题是一个背景被应用到a,而另一个在容器上。设置 a; 的背景不会清除容器的背景。替换:

#home{
left:0px;
width:46px;
background:url('img_navsprites_hover2.png') 0 0;
}
#home a:hover{
background: url('img_navsprites_hover2.png') 0 -45px;
}
#home a:active{
background: url('img_navsprites_hover2.png') 0 -90px;
}

#home {
left: 0px;
width: 46px;
}
#home a { background: url('img_navsprites_hover2.png') 0 0; }
#home a:hover{ background: url('img_navsprites_hover2.png') 0 -45px; }
#home a:active { background: url('img_navsprites_hover2.png') 0 -90px; }

关于css - 具有透明度的背景 Sprite 随 :hover and :active overlays instead of redraws 发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10933069/

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