fullpage.js - 向上滚动时允许正常向上滚动

fullpage.js - allow normal scrolling up when scrolling up

使用 fullpage.js,是否可以在向上滚动时启用正常滚动,但在向下滚动时保持默认的 "one slide per scroll" 功能?

我尝试了以下但似乎不起作用:

$('.full-page').fullpage({
    onLeave: function(index, nextIndex, direction) {

        if (direction == 'down') {
            $.fn.fullpage.setAllowScrolling(true);
        }

        else {
            $.fn.fullpage.setAllowScrolling(false);
        }
    }
});

fullPage.js 不提供此类功能。欢迎在 github issues forum.

中为此创建推荐