javascript - Scroll not working on Android Chrome only -
For any reason, scrolling on Android devices does not work in Chrome browser.
You can see the site at Peshkuiarte.com/mobile
I have tried:
$ (document) .ready (function () {$ ('Body'). CSS ('touch-verb', 'auto');});
I do not understand ... any help would be greatly appreciated
Do you mean by dragging the page with your finger on mobile?
You have -webkit-user-drag: none;
is set to
This is a WebKit-specific asset:
CSS property:
-webkit-user-drag
< / H2>Description
Specifies that its entire element should be pullable rather than content.
Syntax
-webkit -User-drag: Auto | Element | No one;
value
Auto
default puller behavior is used.
Any
element can not be dragged on it all.
This is supported by Chrome 1-17 and Safari 3-5.1:
Comments
Post a Comment