HTMLImageElement extension for lazy loading. Images will be loaded when they are shown.
Photo by Susana Fernandez
Install lazyload-image
via npm or bower.
# via npm
$ npm install lazyload-image
# via bower
$ bower install lazyload-image
Load lazyload-image.html
in your HTML.
<link rel="import" href="lazyload-image.html">
Modify your <img>
elements such as following.
<img is="lazyload-image" src="path/to/your/image.jpg" offset="200" width="100" height="100">
If a browser does not support document.registerElement()
, images will be loaded as usual.