7
我使用jQuery Justified畫廊與內置無限滾動插件。動態加載與無限滾動對齊畫廊圖像
http://miromannino.github.io
這可能是個愚蠢的問題,但我怎樣才能動態地使用PHP加載圖像。
我知道如何使用下面的無限滾動插件來做到這一點,但是這個插件無法使用無限滾動插件。
http://www.infinite-scroll.com/
代碼
$('#gallery').justifiedGallery({rowHeight:120});
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
for (var i = 0; i < 5; i++) {
$('#gallery').append('<a>' +
'<img src="http://path/to/image" />' +
'</a>');
}
$('#gallery').justifiedGallery('norewind');
}
});