FullPage.js Normal scrolling with horizontal slider

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

Hi, in this example, is it possible

  • To automatically lose auto scrolling when I reach between the page?
  • The horizontal slider does not work on arrow click / scroll.

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

Here's my fiddle

Thank.

+3


source to share


1 answer


To automatically lose auto scrolling when I reach between the page?

Yes. Use the fullpage.js option fitToSection:false

. Demo



The horizontal slider does not work on arrow click / scroll.

Don't know what you mean by arrow motion

. Clicking on the arrows works as expected.

+1


source







All Articles