在主页上预加载背景图像

发布于 2024-12-12 00:46:56 字数 392 浏览 0 评论 0原文

我有一个主页,其中包含大量用于填充 div 的 php 代码(包括带有验证的新闻通讯注册、来自 mysql 数据库的内容和各种静态图像)。整个页面构建在背景淡入淡出 JavaScript 之上。

一切都很好,看起来也不错......但是 - 加载页面时,最后出现的“div”是背景图像 - 有效地创建一个大的“空白空间”,直到所有 div 和背景图像都加载完毕被渲染。

是否有一种方法可以在其他任何内容之前加载第一个背景图像,以便用户在导航到网站时不会留下空白区域?

我在使用翻转图像时看到,可以在脚本中预加载翻转版本 - 这是否是寻求此类解决方案时采用的最佳方法?

非常感谢任何帮助或建议 - 如果需要的话很乐意显示代码 - 只是考虑到我的脚本中的数量,我认为这不会太有帮助!

谢谢 京东

I have a homepage that contains a huge amount of php code to populate the divs (including newsletter sign up with validation, content from a mysql database and various static images). The whole page is built on top of a background cross fade javascript.

It all works great and looks good.....however - when loading the page, the last "div" to appear is the background image - creating effectively a large "white space" until all the divs have loaded up and the background image is rendered.

Is there a method to load the first background image before anything else so that the user is not left with this blank space when navigating to the site?

I have seen in using rollover images, the rollover version can be preloaded in the script - would this be the best method to adopt when seeking such a solution?

Any help or advice much appreciated - happy to display code if required - just didnt think it would be too helpful given the amount there is in my script!!

Thanks
JD

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

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

发布评论

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

评论(6

余罪 2024-12-19 00:46:56

我认为你的问题是图像加载的顺序。

如果您的背景图像在所有其他元素之后加载,请确保尽快加载您的背景图像。如果您的背景图像是具有 CSS 属性 background-image:url(myimage.png) 的 div,请将 CSS 文件包含在 head 标记中。

此外,您还可以将背景图像保存为 png 交错。 (在 Photoshop 中:保存为网络和设备 > png24 > 勾选交错)。这样,图像很快就会出现质量较差的情况,并且随着数据传输到浏览器而得到改善。

如果你想用 jQuery 控制图像加载,请看这个问题:使用 jQuery 预加载图像 。但我怀疑这对你有用,因为你的问题是元素加载的顺序。

I think your problem is the order in which the images are loaded.

If your background image is loaded after all the other elements, make sure that your background image is loaded as soon as possible. If your background image is a div with the CSS property background-image:url(myimage.png), include the CSS file in the head tag.

Also, you can save your background image as a png interlaced. (In photoshop: save for web and devices > png24 > tick interlaced). This way, the image will quickly apear with a poor quality, and will improve as the data is transfered to your browser.

If you want to control the image loading with jQuery, look at this question: Preloading images with jQuery. But I doubt this will be usefull for you, as your problem is the order in which elements are loaded.

孤独患者 2024-12-19 00:46:56

你试过用JS预加载图像吗?

像这样的事情:

<script type="text/javascript">
    bg = new Image();
    bg.src="background.png";
</script>

Have you tried preloading the image with JS?

Something like this:

<script type="text/javascript">
    bg = new Image();
    bg.src="background.png";
</script>
贪了杯 2024-12-19 00:46:56

分离http请求。

因此,您的页面仍然是带有背景图像的页面,并且只有很少的元素。

使用javascript发出ajax请求加载页面内容,并将该ajax函数挂钩到$(document).ready()函数(如果您使用jquery,否则可以使用window.load函数),因此页面内容将是页面加载后立即加载。

Separate the http requests.

So your page remains a page with the background image, and with only few elements.

With javascript make ajax request that load content of the page, and hook this ajax functions to $(document).ready() function (if you use jquery, otherwise you can use window.load function), so the content of page will be loaded just after the page has been loaded.

纸伞微斜 2024-12-19 00:46:56

您还可以考虑使用 HTML5 指定的客户端缓存文件。
这并不能完全解决问题,因为用户第一次进入您的网站时,他必须等待图像加载,但可以为您下次同一用户回来时提供显着的性能提升。
请参阅此处了解更多信息。

You can also consider using a client side cache file as specified by HTML5.
This does not completely solve as the first time the user enters your site he has to wait for images to be loaded, but can give you significant performance boost for next times the same user will come back.
Look here for more info.

嘴硬脾气大 2024-12-19 00:46:56

你没有指定你是否使用jquery..

如果jquery
调用Image.load函数。在该回调中使用所有 js ,以便在加载该图像后调用 js 。

u didnt specify u used jquery or not..

if jquery
call Image.load function . in callback of that use all js , so that js called after loading of that image..

尘世孤行 2024-12-19 00:46:56

如果您想在不使用任何 JS 的情况下执行此操作,您可以包含 div 或 img 标签作为页面正文下方的第一项,然后将该 img 标签样式设置为 display:none。它将首先加载图像,因此当您稍后尝试使用它时,它应该已加载并准备好显示。

if you want to do this without using any JS you can include a div or img tag as the first item below body in your page then set that img tag style to display:none. It will load the image first so when you try to use it later it should be loaded and ready to display.

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