easy-img-preloader

1.0.4 • Public • Published

EasyImgPreloader

Image preloader, suitable for the need to load image resources in advance of the scenario.

tips: Image loading failure, we also identified as the loaded.

Install

npm i easy-img-preloader
// or
yarn add easy-img-preloader

Basic Usage

easyImgPreloader(images,callback,timeout);

Params

name type default Required Desc
images Array [] true Image list
callback (progress) => {} - - The loaded complete
timeout Int 5000 - The load timeout for each image

Examples

import easyImgPreloader from 'easy-img-preloader';
 
easyImgPreloader([
    require('./p1.png'), // preload local image
    'http://www.test.com/p2.png' // preload remote image
],(progress)=>{
    progress === 1 && console.log('All images have been loaded');
},3000);

Package Sidebar

Install

npm i easy-img-preloader

Weekly Downloads

1

Version

1.0.4

License

MIT

Unpacked Size

3.76 kB

Total Files

4

Last publish

Collaborators

  • pacezhong