石積みと無限スクロールを使用しているページがあります。すべてが正常に機能しているように見えますが、トリガーが自動的にアクティブになるのではなく、ボタンを使用して訪問者に無限スクロール効果をトリガーしてもらいたいです。グーグルの画像検索のようなもの。これがコードで、ある種の...
$("#load-more-button").click(function(){});
...どこかに配置できます...
<script type="text/javascript">
jQuery(document).ready(function($){ var $container = $('#posts');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.post',
isFitWindow: true
});
});
$container.infinitescroll({
navSelector : '#page-nav', // selector for the paged navigation
nextSelector : '#page-nav a', // selector for the NEXT link (to page 2)
itemSelector : '.post', // selector for all items you'll retrieve
loading: {
finishedMsg: 'Nothing more',
img: 'images/ajax-loader.gif'
}
},
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 );
});
}
);
});