gpt4 book ai didi

css - 如何修复在 Chrome 中再次加载图像

转载 作者:行者123 更新时间:2023-11-28 14:10:12 25 4
gpt4 key购买 nike

我正在使用图像 Sprite 。所有图像都保存在一个 my_images_sprite.png 中。在 Chrome 中,加载页面时(加载并显示所有图像),如果我将鼠标悬停在页面上的图像上,它的图像将再次开始加载。

编辑:

<a href="/subscribe" id="download-btn">
<span class="big">Click</span>
<span class="icon"></span>
</a>

CSS:
#download-btn {
display: block;
width: 192px;
height: 61px;
position: relative;
cursor: pointer;
text-decoration: none;
background-image: url(http://localhost:5000/assets/icons-sc0fd629fcc.png);
background-repeat-x: no-repeat;
background-repeat-y: no-repeat;
background-attachment: initial;
background-position-x: 0px;
background-position-y: -2082px;
background-origin: initial;
background-clip: initial;
background-color: initial;
color: #581B89;
}

如何解决这个问题?

在 Firefox 中一切正常。

最佳答案

我认为这与您使用不同的 url 两次设置背景图像有关:

background: url(/assets/icons-sc0fd629fcc.png) 0 -2082px no-repeat;
background-image: url(http://localhost:5000/assets/icons-sc0fd629fcc.png);

删除 background-image 属性,您应该没问题!

关于css - 如何修复在 Chrome 中再次加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9580100/

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