jQuery 预加载动画
我想用一些 gif 动画“预加载”我网站的起始页。这是一个 3 帧的作品,我想在第一页之前展示它。是否有插件可以预加载显示特定动画的页面?
I want to "preload" the start page of my website with a little gif-animation. Its a 3-frame-piece and I want to show it right before the first page. Are there plugins to preload a page with a specific animation shown?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要插件,甚至不需要 jQuery。只需将图像分配给页面
的
块中的变量即可。 JavaScript 会阻止内容在完成其工作之前加载,因此在呈现 HTML 时,页面访问者已经缓存了图像:
You don't need a plugin, or even jQuery. Just assign the image to a variable in the
<script>
block in the<head>
of your page. JavaScript prevents the content from loading until it has done it's job, so the image will already be cached by the page visitor when the HTML is rendered: