2

这里有很多单独的问题,我想为最近的很多帖子道歉;)

我的网站上有无限滚动(其他问题我们不会提及),但整个事情似乎启动得太快了,尤其是在分页存在之前。

这就是我所拥有的:

<script src="<?php bloginfo('template_directory'); ?>/js/jquery.infinitescroll.min.js"></script>
<script>
  $(function(){

var $container = $('.rest-of-content');

  $container.infinitescroll({
    navSelector  : '.wp-paginate',    // selector for the paged navigation 
    nextSelector : '.wp-paginate li a',  // selector for the NEXT link (to page 2)
    itemSelector : '.single-fg-post',     // selector for all items you'll retrieve
    bufferPX: 20,
    loading: {
      msgText: 'Fetching more gold...',
      finishedMsg: 'Damn! No more gold!',
      img: '<?php bloginfo('template_directory'); ?>/images/ajax-loader-black.gif'
    }
});

  });
</script>

但是,如果您查看它的工作方式:http: //goo.gl/L9p00 - 如果您向下滚动一点,您会看到滚动条滑块缩短,因为它在我到达之前加载内容。

4

1 回答 1

1

这并没有错。它完全按预期工作。您希望页面在触底之前呈现,因为您不希望用户必须等待。您的服务器可以承受打击。您的用户无法忍受等待。

看看Pinterest,看看完全相同的事情。

于 2011-12-29T02:37:46.223 回答