The Official Blog of Patcoola

Im just a dude watching over my parents,
and trying to make cartoons and video games from home.

Script: Image Preload [JS]

Important!

Dear visitors,

This blog and the Tigarus.com network will be changing our website software in May (2024). There will be some down time and there will be a change to the webpage addresses.

We will also be removing the Anime blogs. The Rocksmith Songs website will be unavailable of a few weeks or months while I move the database to the new software.

At the moment we are running on Wordpress, the new software is an in-house project which is 57 times faster. It will also provide more freedom for development.

Thank you for understanding.

, By Patcoola

Script Title: imagePreload
Programming Language: Java Script
Date Completed: 2012/11/25

Purpose:
To load an image into the Web browsers memory.

Advertisement

Donate Now!

This might not be the best time, but making a blog is not easy. Would you consider donating?


Description: Preload an image, load the image into the Web browsers memory or cache if applicable. Returns true or false if the image is completely loaded, returns true if the image was not able to load. Returns undefined if the function’s argument is not valid.

Note: Web browsers only open one connection per file requested, this means that if you run this function for the same image file more than once, the image will not load more than once, because of this we can check if the file has been completely loaded.

Method:

imagePreload ( src_s );

Example Usage:

imagePreload ( “img/myimg.jpg” );

Loads the image into memory

Example Usage 2:

var file_s = “img/myimg.jpg”;

ImagePreload ( file_s );

var intv = self.setInterval ( function () {
if ( ImagePreload ( file_s ) ) {
// do something
clearInterval ( intv );
}
}, 500 );

Load the image into memory, check if the image is completely loaded and wait till the image has completely loaded.

 

Advertisement

Donate Now!

I don't always use the women's bathroom, but when I do, you can bet it really smells. If you like my blog, please consider donating.


 

Post Meta

Share Post

 

Comments: Write Comment

Be the first to write a comment.


Leave a Comment


All comments are reviewed before publishing. Comments must be related to the page topic, must not be spam, and must comply with the criminal code of Canada.