cubiq / iscroll

Smooth scrolling for the web
http://iscrolljs.com
MIT License
12.89k stars 3.82k forks source link

Choppy iScroll in fullPage.js (scrollOverflow option) #1215

Open Sylwia777 opened 6 years ago

Sylwia777 commented 6 years ago

Hello, I am using "scrollOverflow" option in fullPage.js, there's a demo: https://alvarotrigo.com/fullPage/examples/scrolling.html#firstPage

Page works fine on mobile device, but on desktop (Chrome), there is iScroll issue: scrolling is choppy and "square": https://youtu.be/0UhBidZlllY

in compare to normal scroll: https://youtu.be/GpiYPv9fyE8

Do anyone have some useful snippet to fix this problem?

Thanks a lot, Sylwia

monfortm commented 6 years ago

+1

Hi all, I also notice this. the only way I found to make it less bad is using

$('#fullpage').fullpage({
    [...]
    scrollOverflowOptions: { // option for the iscroll lib
        "mouseWheelSpeed": 5,
    }
});

5 is okay-ish for me because the overflows are not to big. Still, I hope there is a real solution.