admin管理员组文章数量:1345090
I am creating a webview app for iPad, and want to show a splashscreen until index file and a set of images is loaded and rendered.
I want this splashscreen to disappear when all images is loaded and rendered - so the user doesn't see the typical image loading and rendering of non cached images.
Is there an event in browsers for image rendering done I can catch, or is there any Javascript plugin out there that can do this?
I am creating a webview app for iPad, and want to show a splashscreen until index file and a set of images is loaded and rendered.
I want this splashscreen to disappear when all images is loaded and rendered - so the user doesn't see the typical image loading and rendering of non cached images.
Is there an event in browsers for image rendering done I can catch, or is there any Javascript plugin out there that can do this?
Share Improve this question asked Nov 24, 2011 at 22:08 user920041user920041 2-
1
From the jQuery
ready()
docs: "this event does not get triggered until all assets such as images have been pletely received."...seems$(document).ready()
should do the trick :) – Clive Commented Nov 24, 2011 at 22:12 - On same doc it actually says that when working with images use the load() . But thanks for pointing me into this page anyway! – user920041 Commented Nov 24, 2011 at 22:31
3 Answers
Reset to default 8There are two event listeners DOMContentLoaded
and load
. The load event fires when all files have finished loading from all resources, including ads and images. The images are rendered during download, so this should be what you are looking for.
See the demo here
I'll write it out for you:
loadedImages = 0;
timesChecked = 0;
checkInterval = 500;
maxLoadTime = 10000; // in miliseconds
window.onload = function() {
for (var i = 0; i < document.getElementsByName('img').length; i++) {
document.getElementsByName('img')[i].onload = function() {
loadedImages++;
}
}
intervalID = setInterval("checkSplash()", checkInterval);
}
function checkSplash() {
timesChecked++;
if (loadedImages >= document.getElementsByName('img').length || timesChecked * checkInterval >= maxLoadTime) {
clearInterval(intervalID);
// hide splash screen
}
}
Enjoy :)
It's pretty simple actually:
<img src=".." onload="alert('image 1 is loaded!')" />
You can add .load()
to each image and then simply check when all images are loaded by declaring a variable.
版权声明:本文标题:javascript - Is there something like a ready event when an image in html is loaded and rendered? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784852a2538498.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论