如何知道 div 背景图像是否已加载
我有一个应用程序,其中有许多 div,每个 div 都有不同的图像作为 CSS 的背景图像...我如何知道应用于 div 的背景图像是否已完全加载...
I have an Apllication Which has many divs each having different image as background image as CSS... How can I know if the background image applied to the div is completely loaded...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当页面完成加载时,会触发 window.onload 事件,其中还包括图像
The window.onload event is fired when the page is complete loaded, which also includes the images
您需要先“预加载”背景图像,然后将它们设置为 div
您可以查看这个问题:
预加载使用 jQuery 生成图像
You need to 'preload' your background images first, then set them to divs
You can look at this question:
Preloading images with jQuery