I\'m using CSS pointer-events to pass touchmove events through a transparent div. This works everywhere apart from Chrome on Android. I\'m wondering if this is a known iss
Apparently there is a separate CSS property called touch-action:
touch-action
https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action
Add touch-action: none; and it should work.
touch-action: none;