画像の遅延読み込み(クリックで画像表示)













$('img').lazyload({
placeholder : 'green.png'
, event : 'click'
});
$('img').lazyload();
$('img').lazyload({ threshold : 200 });
$('img').lazyload({ placeholder : 'img/grey.gif' });
//When images are not sequential
$('img').lazyload({
failurelimit : 10
});