Simple image preloading
reloader.js
var images = new Array();
function preloadImages(){
for (i=0; i < preloadImages.arguments.length; i ){
images[i] = new Image();
images[i].src = preloadImages.arguments[i];
}
}
preloadImages("logo.jpg", "main_bg.jpg", "body_bg.jpg", "header_bg.jpg", "jser.jpg");
The specific usage is as above, friends can use your imagination and expand freely.
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn