按照關於infinite scroll的說明,我可以隱藏第2,3,4等頁面中的新內容,直到它完成加載然後生成動畫。現在我想達到這些效果,但主要內容是什麼,第一頁。任何幫助? 代碼,我使用的是:同位素 - 在第一次加載時隱藏元素
<script>
$(function(){
var $container = $('#boxes');
$container.imagesLoaded(function(){
$container.isotope({
itemSelector : '.box'
});
});
</script>
<script>
$('#boxes').isotope({
// options
itemSelector : '.box',
layoutMode : 'masonry'
masonry : {
columnWidth : 325
},
});
</script>
<script>
$(function(){
var $container = $('#boxes');
$container.imagesLoaded(function(){
$container.isotope({
itemSelector: '.box'
});
});
$container.infinitescroll({
navSelector : '#navigation',
nextSelector : '#navigation a#next',
itemSelector : '.box',
loading: {
finishedMsg: 'no more pages to load.',
img: 'http://i.imgur.com/qkKy8.gif'
}
},
function(newElements){
var $newElems = jQuery(newElements).hide()
console.log('Elements Retrieved:');
var $newElems = $(newElements);
$container.imagesLoaded(function(){
$newElems.fadeIn(); // fade in when ready
$container.isotope('appended', $newElems, function(){console.log('Appended');});
});
});
});
</script>
而這裏的the blog。提前致謝!
如果您想隱藏最初加載的內容,只需隱藏()您的容器或將其不透明度設置爲0%,直到您想要的任何用戶操作都可以顯示它和內容。 – Systembolaget
@Systembolaget我使用 '' 但首先它開始加載內容,然後隱藏它,然後淡入 – Lautaro