Velocity JS禁用箭头键按下滚动

时间:2015-07-16 04:15:50

标签: javascript velocity.js

广泛审阅的文档,并没有看到按下箭头键时禁用滚动的参数。

https://github.com/julianshapiro/velocity

1 个答案:

答案 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();
            }
        });