This project is forked from tuupola/jquery_lazyload and add features below:
* Many Details for improve performance;
* IE6/7 support;
* Available with Zepto;
* `vertical_only` \ `minimum_interval` \ `use_minimum_interval_in_ios` \ `no_fake_img_loader` options.
More information on jieyou/lazyload.
This page deprecates gracefully for non JavaScript browsers. It requires hiding lazy loaded images with css and adding a <noscript> block which contains the real image and it is shown when JavaScript is not enabled. If JavaScript is enabled show() function is called before initializing Lazy Load plugin.
.lazy { display: none; }
$("img.lazy").show().lazyload({ effect : "fadeIn" });
<img class="lazy" src="img/grey.gif" data-original="img/example.jpg" width="765" height="574"> <noscript><img src="img/example.jpg" width="765" height="574"></noscript>