推荐的 Javascript 图像预加载器

发布于 2024-09-15 04:52:28 字数 1536 浏览 9 评论 0原文

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

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

发布评论

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

评论(3

胡渣熟男 2024-09-22 04:52:28

我喜欢 jquery 预加载插件。试试这个.........

http://plugins.jquery.com/project/Preload

I like the jquery preload plugin. Try this.........

http://plugins.jquery.com/project/Preload

把梦留给海 2024-09-22 04:52:28

作为建议,您可以使用惰性加载器,例如这个,仅在图像加载完毕后加载图像已滚动并位于视口中。

As a suggestion, you can use a lazy loader such as this one to only load images once they are have been scrolled and are in the viewport.

流绪微梦 2024-09-22 04:52:28

这是最好的。

(new Image).src = '/path/to/image/to/preload';

要预加载其他东西(感谢丹尼尔)你可以尝试这个:

document.createElement('object').data = '/path/to/resource/to/preload';

This one is the best.

(new Image).src = '/path/to/image/to/preload';

To preload other things (thanks Daniel) you can try this:

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