Turn off scrolling moments in Chrome for Android

I am looking for a way to disable pulse scrolling on a Chrome device for Android. I have a div with a fixed height, and I want to be able to scroll through the contents of this div, but without a smooth effect.

It’s easy on iOS, I just don’t add “-webkit-overflow-scrolling: touch”, but it looks like Chrome for Android applies this automatically.

When I check the code with Chrome → Device check, I don’t see this property, so I think that Chrome does it persistently, and I did not find a way to prevent this.

I tried preventDefault for touchhend but it does not work.

Any suggestion?

Thank.:)

+4
source share
1 answer

code.google.com chromium

" -webkit-overflow- , , , .

-webkit-overflow-scrolling: touch;

- 2013

Chrome, ,

<div style="overflow: auto">
    <div style="z-index: 0">
        Content
    </div>
</div>

, zindex: 0 ": ".

0

All Articles