1

I implemented fullpage.js and it works perfectly. Currently I'm trying to use the option scrollOverFlow = true to scroll inside a section when this section has a too high height.

On computer this is awesome, but when I launch my website on my mobile, the scrolling inside a section is not smooth and slow.

Is it normal ?

[EDIT] This is smooth on Firefox but not chrome on mobile.

AnthonyR
  • 3,485
  • 1
  • 18
  • 41

1 Answers1

0

Because Fullpage.js is using slimscroll.js for inner page scroll, and this js plugin's option default touchScrollStep: 200 is too slow. You can refer to "Slimscroll bar very slow in mobile browser".

My solution is to open the slimscroll.min.js, and change the default of touchScrollStep: 200 to touchScrollStep: 50

Community
  • 1
  • 1
Inu Lin
  • 1
  • 2