image-batch-loader

0.0.0 • Public • Published

image-batch-loader

Load a set of images in the browser, get an event when they're all loaded. The callback event will have the loaded images as an argument.

This module is designed for use in the browser - use browserify or some other means to get it running in the browser.

Usage

var loadImages = require('image-batch-loader');

loadImages(['images/cat.png', 'images/mouse.png'], function (images) {
  var catImage = images['images/cat.png'],
      mouseImage = images['images/mouse.png'];

  // do something with cat and mouse image
});

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i image-batch-loader

      Weekly Downloads

      1

      Version

      0.0.0

      License

      MIT

      Last publish

      Collaborators

      • davidmason