Simplest Image Lazy Load with Pure JavaScript – lazy.js

Category: Javascript , Loading | December 2, 2014
Author:vishnurs
Views Total:2,836 views
Official Page:Go to website
Last Update:December 2, 2014
License:MIT

Preview:

Simplest Image Lazy Load with Pure JavaScript – lazy.js

Description:

Lazy.js is a minimalist JavaScript solution to delay the loading of images until they come into view.

How to use it:

Load the lazy.js at the end of the document so your pages load faster.

<script src="js/lazy.js"></script>

Insert your image into the desired position using Html5 data-lazy attribute. loading.gif is a placeholder to indicate the loading progress.

<img src="img/loading.gif" data-lazy="your-image.png">

Initialize the lazy load function for your images.

lazy.init({
  delay:1000,
  callback : function(elem) {}
});

You Might Be Interested In:


Leave a Reply