我有一个<div id="content" class="clearfix"></div>
自我填充来自我服务器上单独目录的图片网址列表。
以下是该网站的实时网址:http://ilovesmallies.com/forum/showcase.php
我想在这个div中使用无限滚动和砌体插件。
但是,我不确定如何使用此脚本指向图像网址列表...
以下是现在编码的方式,但不起作用。
<script>
$(function(){
var $container = $('#content');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.box',
columnWidth: 250
});
});
$container.infinitescroll({
navSelector : '#content', // selector for the paged navigation
nextSelector : '#content a', // selector for the NEXT link (to page 2)
itemSelector : '.box', // selector for all items you'll retrieve
loading: {
finishedMsg: 'No more pages to load.',
img: 'http://i.imgur.com/6RMhx.gif'
}
},
// trigger Masonry as a callback
function( newElements ) {
// hide new items while they are loading
var $newElems = $( newElements ).css({ opacity: 0 });
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
// show elems now they're ready
$newElems.animate({ opacity: 1 });
$container.masonry( 'appended', $newElems, true );
});
}
);
});
</script>
答案 0 :(得分:0)
你能渲染你的所有图像吗?
我最喜欢的方法是首先对图像项进行分页,然后应用:
itemSelector&lt; ---&gt;每个项目的类。 (在你的情况下,它可以是每个图像)
navSelector&lt; ---&gt;分页元素的id
nextSelector&lt; ---&gt;指向分页中的元素(链接到下一页)
我只是让分页显示无。