Skip to content

bahamas10/preloadimages.js

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

preloadimages.js

Preload images and callback when they are all ready

Usage

<script src="preloadimages.min.js"></script>
<!-- // defines preloadimages() -->

You can call it with an array or object of images

preloadimages(['1.png', '2.png'], function(images) {
  console.log(images);
  // => [img, img]
});

or

preloadimages({moon: 'moon.png', sun: 'sun.png'}, function(images) {
  console.log(images);
  // => {moon: img, sun: img}
});

The function will callback when all of the images are loaded (or have failed to load). The argument passed to the callback is either an array or object to match the input, and if it is an array, it will be in the same order as the input array.

The items in the returned argument are new Image() elements.

License

MIT License

About

Preload images and callback when they are all ready

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published