You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
398 B
13 lines
398 B
|
19 years ago
|
// Image Preloader v1.0.1
|
||
|
|
// documentation: http://www.dithered.com/javascript/image_preloader/index.html
|
||
|
|
// license: http://creativecommons.org/licenses/by/1.0/
|
||
|
|
// code by Chris Nott (chris[at]dithered[dot]com)
|
||
|
|
|
||
|
|
|
||
|
|
function preloadImages() {
|
||
|
|
if (document.images) {
|
||
|
|
for (var i = 0; i < preloadImages.arguments.length; i++) {
|
||
|
|
(new Image()).src = preloadImages.arguments[i];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|