广泛审阅的文档,并没有看到按下箭头键时禁用滚动的参数。
答案 0 :(得分:0)
我能够通过在" main.js"中找到下面的代码来解决这个问题。 ' 40'价值指示向下,' 38'起来了。这可能有助于某人在其他脚本中隔离和删除此功能。
$(document).on('keydown', function(event){
if( event.which=='40' && !nextArrow.hasClass('inactive') ) {
event.preventDefault();
nextSection();
} else if( event.which=='38' && (!prevArrow.hasClass('inactive') || (prevArrow.hasClass('inactive') && $(window).scrollTop() != sectionsAvailable.eq(0).offset().top) ) ) {
event.preventDefault();
prevSection();
}
});