簡體   English   中英

實現無限滾動

[英]Implementing infinite scroll

我正在嘗試使用無限滾動,但是當我向下滾動時什么也沒有發生。 這是我當前的分頁外觀:

<ul class="elgg-pagination">
   <li class="elgg-state-disabled"><span>« Previous</span></li>
   <li class="elgg-state-selected"><span>1</span></li>
   <li><a href="http://siteexample.com/casting?offset=10">2</a></li>
   <li><a href="http://siteexample.com/casting?offset=20">3</a></li>
   <li><a href="http://siteexample.com/casting?offset=30">4</a></li>
   <li><a href="http://siteexample.com/casting?offset=40">5</a></li>
   <li><a href="http://siteexample.com/casting?offset=50">6</a></li>
   <li><a href="http://siteexample.com/casting?offset=10">Next »</a></li>
</ul>

這是我的JavaScript外觀:

$(window).scroll(function(){
var mostOfTheWayDown = ($(document).height() - $(window).height()) * 9 / 10;   
if ($(window).scrollTop() >= mostOfTheWayDown){
$container.infinitescroll({

  navSelector  : $('a',find('.elgg-state-selected')),    // selector for the paged     navigation 
  nextSelector : $('a',find('.elgg-state-selected').next('li').not('.elgg-state-disabled')),  // selector for the NEXT link (to page 2)
  itemSelector : '.item1',     // 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 ); 
     });
  }
);
  }

我會推薦這個插件,不要浪費時間重新發明輪子,享受jQuery的強大功能!

http://www.infinite-scroll.com/

// infinitescroll() is called on the element that surrounds 
// the items you will be loading more of
  $('#content').infinitescroll({

    navSelector  : "div.navigation",            
                   // selector for the paged navigation (it will be hidden)
    nextSelector : "div.navigation a:first",    
                   // selector for the NEXT link (to page 2)
    itemSelector : "#content div.post"          
                   // selector for all items you'll retrieve
  });

您也可以嘗試以下方法:

http://airbnb.github.io/infinity/demo-on.html

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM