Jump to content

Loop till images are loaded?


Adam

Recommended Posts

Hi all.

 

I'm in the process of setting up a script somewhat like a gallery.. Basically I'd like to click a thumbnail, then load another, larger image. I've set up a neat looking "loading" sign to say it's now loading the image into cache.. but what I would like to know is how I could 'loop until image loaded' .. sort of speak.. so load the images in real-time.. then move on with the script.. I've done a lot of googling but now found much thats any good... Bin trying for a while so might just be too tired to think straight. silly thing is i've done it before just can't remember how :S

 

Could anybody help me out?

 

Cheers! Adam

Link to comment
Share on other sites

A'haa .. after a nights sleep it came to me..

 

function loadImage(imgsrc) {
if (document.images) {
	preloadImg = new Image;
	preloadImg.src = imgsrc;
}	
ti = setInterval("doSomething();", 1000);
}

function doSomething() {
if (preloadImg.complete == 0) {
	return false;
}
alert('Image has been loaded!');
clearInterval(ti);
}

 

... incase anyone struggles with the same problem.

 

Adam

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.