lazy loading images src and or srcset width promise magic
lazy loading images src and or srcset width promise magic
https://rawgit.com/soenkekluth/lazyload-promise/master/example/index.html
$ npm install --save lazyload-promise
# or
$ yarn add lazyload-promise
import lazyload from 'lazyload-promise';
const nodeContainingImages = document.querySelector('#nodeContainingImages');
lazyload(nodeContainingImages)
.then(......)
// optional get load event of each image:
lazyload(nodeContainingImages, {onLoad:(e)=>{....}})
.then(......)
MIT © Sönke Kluth