优雅的页面加载/控制文件加载
我是一个脚本猴子,与许多对网络一无所知的图形设计师一起工作。
尽管我反对,但我经常发现自己遇到问题,例如 100Kb 背景图像、他们将几个文本项目制作成光泽图像以及加载到页面中的 3 个单独的冗长 FLV 等。
我真的很想定义一个堆栈来控制流程加载的物品数量。 例如,渲染背景,然后渲染 HTML,然后渲染页面图像,最后加载 FLV。
我认为这是存在的,而且我一直在努力寻找。
有人能给我指出这方面的好资源吗?
I am a scriptmonkey working with a lot of graphic designers who know not a thing about the web.
Despite my objections I frequently find myself with problems such as a 100Kb background image, several textual items they have made into glossy images, and 3 separate lengthy FLVs loading into a page etc etc.
I would really like to define a stack to control the flow of items loading. Eg, render the background, then the HTML, then the page images, then load the FLVs.
I assume this exists and I have been searching badly.
Can anyone point me to good resources on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于图像,您可以使用图像的 load 事件来了解它们何时完成。 所以你可以用这种方式链式加载。 看这个: https ://web.archive.org/web/1/http://articles.techrepublic%2ecom%2ecom/5100-10878_11-5214317.html
For the images you can use the load event of the images to know when they are done. So you can chain loading this way. Look this: https://web.archive.org/web/1/http://articles.techrepublic%2ecom%2ecom/5100-10878_11-5214317.html