4

所有文档都讨论了航点何时到达视口顶部,但我希望当航点的任何部分位于视口中心时触发。

如果我向下滚动,此代码工作得相当好,但是当我向上滚动时,它显然不起作用。

$('.section').waypoint(function(direction) {
    highlight('#' + this.id);
}, {
    context: '#scroll',
    offset: function (direction) {
        return $(this).height();
    }
});

我尝试了下面的代码和几个变体,它甚至从未命中任何一个 return 语句。

$('.section').waypoint(function(direction) {
    highlight('#' + this.id);
}, {
    context: '#scroll',

    offset: function (direction) {
        if (direction == 'down') {
            return -$(this).height();
        } else {
            return 0;
        }
    }
});

所以现在我正在尝试这个,基于航路点示例,但是 $active.id 不像 this.id 那样工作,所以我的函数“highlight”失败了。

$('.section').waypoint(function (direction) {
    var $active = $(this);
    if (direction == 'down') {
        $active = $active.prev();
    }
    if (!$active.length) {
        $active = $(this);
    }
    highlight($active.id);
}, {
    context: '#scroll',
    offset: function (direction) {
        return $(this).height();
    }
});
4

1 回答 1

16

offset选项不采用方向参数。我很想知道您是否从文档中的某个地方得到了它,因为如果函数中使用direction了一个部分offset,那就是一个错误。

当元素的顶部到达视口的中间时,您可以使用 % 偏移量来告诉航点触发:

offset: '50%'

如果您在向上滚动和向下滚动时需要不同的偏移量,最好通过创建两个不同的航点来实现:

var $things = $('.thing');

$things.waypoint(function(direction) {
  if (direction === 'down') {
    // do stuff
  }
}, { offset: '50%' });

$things.waypoint(function(direction) {
  if (direction === 'up') {
    // do stuff
  }
}, {
  offset: function() {
    // This is the calculation that would give you
    // "bottom of element hits middle of window"
    return $.waypoints('viewportHeight') / 2 - $(this).outerHeight();
  }
});
于 2013-01-30T00:16:33.293 回答