CSS .Hover 图像加载缓慢

发布于 2024-08-27 00:52:50 字数 115 浏览 8 评论 0原文

我有一个提交按钮,当用户将鼠标悬停在其上时,该按钮会发生变化。现在,图像需要一段时间才能加载,并且您会在半秒内出现白屏而不是其他按钮。有没有办法只使用 CSS 和 HTML 来改进这个,或者我需要做一些 JS 工作?

I have a submit button that changes when the user hovers his mouse over it. Right now the image is taking a while to load and you get a half second where there is white screen instead of the other button. Is there anyway to improve this using just CSS and HTML or do I need to do some JS work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

筱果果 2024-09-03 00:52:50

使用精灵图像,然后在悬停时切换背景位置。这确保悬停时显示的图像已被下载。

Use a sprite image, and then toggle background position on hover. That ensures that the image being displayed on hover has already been downloaded.

演出会有结束 2024-09-03 00:52:50

CSS Sprites

当 DOM 准备好时加载 css sprites,这可以说是“预加载”用户将鼠标悬停在提交按钮上之前的图像:)

CSS Sprites

And load the css sprites when DOM is ready, this can sort of "preload" the image before user hovers on the submit button :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文