1

我正在使用 2 个航点来实施

1. a sticky header (http://imakewebthings.com/jquery-waypoints/sticky-elements/)
2. An infinite live scroll (http://imakewebthings.com/jquery-waypoints/infinite-scroll/)

标题有效。但是一旦触发实时滚动,粘性标题就会回到原来的位置,底部的“顶部”按钮也会消失。实时滚动仍然有效。

当实时滚动开始时,我尝试再次调用stickyHeader 函数。但这无济于事。我的stickyHeader函数如下,

var stickyHeader = function() {

  $('.top').addClass('hidden');
  $('body').waypoint(function(event, direction) {
      $('.top').toggleClass('hidden', direction === "up");
  }, {
      offset: '-100%'
  }).find('#stickyHeaderText').waypoint(function(event, direction) {
      $(this).parent().toggleClass('sticky', direction === "down");
      event.stopPropagation();
  });

};

更新: 无限滚动

        var opts = {
            offset: '100%'
        };

        var $footer = $('#footerDivId');
        $footer.waypoint(function(event, direction) {
            $footer.waypoint('remove');
            ftr.remove();
                    // get more data
            $footer.waypoint(opts);
        }, opts);

        stickyHeader();
4

0 回答 0