javascript – FullPage.js正常滚动与水平滑块

http://alvarotrigo.com/fullPage/examples/normalScroll.html#secondPage/1

嗨,在这个例子中,是否可能

>当我到达页面之间时,丢失自动出现的自动滚动?
>水平滑块在箭头按下/滑动运动时不起作用.

    $('#fullpage').fullpage({
        menu: '#menu',
        anchors: ['firstPage', 'secondPage', '3rdPage'],
        sectionsColor: ['#C63D0F', '#1BBC9B', '#7E8F7C'],
        autoScrolling: false
    });

这是我的fiddle

谢谢.

最佳答案

To lose the auto scroll that automatically comes, whenever i reach in between a page?

是啊.使用fullpage.js选项fitToSection:false. Demo

The horizontal slider doesn’t work on arrow press/swipe motion.

不知道你对箭头运动的意思.单击箭头按预期工作.

点赞