在屏幕外预加载图像 - Android 浏览器
有没有办法在 Android 浏览器中预加载当前不在屏幕上的 ~3 个图像。
目前,我正在使用 iframe 来水平滚动图像横幅,但是当用户快速滚动时,您会得到一半的图像,直到它停止滚动并加载图像。
我希望预渲染超过 300 像素(现在是这样)。
Is there a way to preload ~3 images that are currently off screen in the android browser.
Currently I'm using an iframe to allow for horizontal scrolling of a banner of images, but when the user scrolls to fast you get a half cut of image until it stops scrolling and loads the image.
I was hoping to pre-render more then about 300px (what it does now).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想研究一下使用 Javascript 或 JQuery 延迟加载图像。基本想法是在 DOM 加载后加载图像,这样所有图像都会完整加载,并且不会影响页面速度。
看看这篇文章。
http://deanhume.com/Home/BlogPost/lazy-loading -images-with-jquery/22
You maybe want to look in to lazy loading images with Javascript or JQuery. Basicallt the idea is to load image once the DOM has been loaded, this way all images are loaded in full and without hinderence to the page speed.
Take a look at this article.
http://deanhume.com/Home/BlogPost/lazy-loading-images-with-jquery/22