facebook twitter hatena line email

Javascript/jqueryライブラリ/lazyload.js

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:18時点における127.0.0.1 (トーク)による版 (ページの作成:「==lazyloadとは== 画像の遅延ロード ==download== wget https://raw.githubusercontent.com/tuupola/jquery_lazyload/master/jquery.lazyload.min.js ==サンプル==...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

lazyloadとは

画像の遅延ロード

download

wget https://raw.githubusercontent.com/tuupola/jquery_lazyload/master/jquery.lazyload.min.js

サンプル

<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.lazyload.js" type="text/javascript"></script>
<img class="lazy" data-original="img/example.jpg" width="640" height="480">
<script type="text/javascript">
$(function() {
   $("img.lazy").lazyload({
       effect : "fadeIn"
   });
});
</script>