0.0.2 • Published 11 years ago

image-loaded v0.0.2

Weekly downloads
269
License
MIT
Repository
github
Last release
11 years ago

image-loaded

browser support

Call a callback when an image has loaded - adapted from desandro/imagesloaded, minus the jQuery.

Installation

Using npm and browserify:

npm install image-loaded

Usage

require('image-loaded')(image, callback)

var loaded = require('image-loaded')
var image = document.getElementById('hidden-image')

loaded(image, function(err, alreadyLoaded) {
  // image is loaded!
})

If the image was already loaded beforehand, the callback will be called instantly with the second argument set to true. Otherwise this will be false.