cubiq / iscroll

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

BUG-In android7 phone can not slide above #1135

Open lawensong opened 7 years ago

lawensong commented 7 years ago

In android7 phone can not slide above, other android version is ok(example: android 5) Who can help me

andershopkins commented 7 years ago

What browser are you using?

There was a fix to iScroll's handling of passive events in Chrome 55, but a new bug appeared in Chrome 56 (confirmed in the iScroll demos).

EDIT: Scouring the GitHubs, rbmeyers (on the github team), has been posting everywhere with a simple CSS fix:

touch-action: none;

https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action

yangjocy commented 6 years ago

Hi There, Met same issue here... The slowness happens on mobile devices while it's totally OK on desktop chrome. Tried "touch-action:none" but it didn't work this time - First, adding it to the wrapper's CSS touch-action will get covered by iScroll's own touch-action. Second, even if I manually change it to "none", the slowness is still there. Any ideas?