Lazy Load, 延迟加载图片的 jQuery 插件

一、Lazy Load 依赖于 jQuery. 请将下列代码加入页面 head 区域:
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.lazyload.js" type="text/javascript"></script>

二、<img class="lazy" src="img/grey.gif" data-original="img/example.jpg"  width="640" heigh="480">
三、$("img.lazy").lazyload();

 

你可能感兴趣的:(Lazy Load, 延迟加载图片的 jQuery 插件)