网站加载时间
我正在开发一个主页上有滑块的网站。我正在使用 nivo slider。 滑块中的图像尺寸为 1600*1200。因此,主页加载时间过长。
有没有一种方法可以动态减小图像大小,或者我必须首先压缩每个图像,然后将其上传到服务器。
还有其他替代方法吗,如果有的话请推荐一种。
I'm developing a site which has a slider on home page.I'm using nivo slider.
The images in the slider are of sizes 1600*1200.Due to this the home page is taking too much time to load.
Is there a way so that the images sizes are reduced on the fly or I've to first compress each image and then upload it to the server.
Is there any other alternative method, please suggest one if any.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以借助 jQuery 异步加载图像。这是在nivoslider中异步加载图像的教程。这将极大地减少页面加载时间。
You can load the images asynchronously with help of jQuery. Here is the tutorial for loading images in nivoslider asynchronised. This will reduce the page load time tremendously.
您可以在其他图像之前加载第一个图像,这足以显示滑块。之后,您可以异步加载其他图像。
You can load the 1st image before the others, which is enough to show the slider. Afterward, you can asynchronously load the other images.