使用带有透明度的图像精灵的 CSS 菜单
这是我的问题。
我有一个使用图像精灵的菜单,图像具有透明度,但是当我添加 :hover 时,它可以工作,但我仍然能够在最后看到原始图像。
有没有办法让悬停显示我想要的图像并替换原始图像?
谢谢,
马可
This is my issue.
I have a menu using an image sprite, the image has transparencies, but when I add a :hover, it works, but I am still able to see the original image at the end.
Is there a way to make the hover show the image that I want and REPLACE the original one?
Thanks,
Marco
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将图像用作
background-image
来替换图像,而不是使用标记。
但大多数时候,这很慢,另一种方法可能是个好习惯:
像这样:
这样做的问题是图像大小是固定的。您确实必须指定它,而不仅仅是对图像执行此操作。
我喜欢这是最好的方式。如果您想在
中设置
src
,这可以使用 Javascript 来完成,但大多数时候要重得多,因为您必须加载一个来自服务器的额外图像。You can replace an image by using it as a
background-image
instead of using the<img>
tag.But most of the times, this is slow and another way is maybe good practice:
Like this:
The problem with this, is that the image size is fixed. You really have to specify it, instead of just doing this with an image.
I like this as the best way. If you want to set the
src
in your<img>
, this can be done with Javascript, but is much heavier most of the time, because you have to load an extra image from the server.