>
Back to Top


').animate({scrollTop:0},800);
});
});
$(window).load(function () {
// endless scrolling
var $container = $('#holder');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.box'
});
});
$container.infinitescroll({
navSelector : '#page-nav', // selector for the paged navigation
nextSelector : '#page-nav a', // selector for the NEXT link (to page 2)
itemSelector : '.box', // selector for all items you'll retrieve
bufferPx: 0,
debug : true,
loading: {
msgText: 'Loading more...',
finishedMsg: 'No more pages to load.',
img: 'http://static.tumblr.com/ktj2ag8/YXbm4kg3y/ajaxload.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 );
});
}
);
// End of endless scrolling
});