0

我有一个网站有几个大的 jpg 用作背景图片

http://bitstream.ca/beta3/

页面加载时会出现几秒钟的延迟,然后才会正确显示任何内容。

任何人都可以推荐一些方法,无论是使用 jQuery 还是其他方法,在初始页面加载后智能地加载额外的资产?

即,伪逻辑将是
1 - 加载初始页面显示的最小资产
2 - 在 #1 完成后,加载页面功能所需的任何其他资产
3 - 在 #2 完成后让 DOM 知道我们准备好了!

4

1 回答 1

0

yes, there are a couple optimizations you can do.

firstly, sprite and optimize your images in order to make them as small and easy to load in one request as possible.

in terms of dynamic loading, there are a number of plugins you can use to lazy load images and other content which you don't need right away. check out:

于 2012-04-25T15:41:47.300 回答