I originally wanted to track one-finger panning on mobile webkit (iOS/Android). I found Creating a "sticky" fixed-position item that works on iOS Safari and I saw gesturechange
. But as far as I tried, gesturechange
only seems to be fired for two-finger move. Then I found touchmove
event and it seems I can use that.
- What are differences between
touchmove
andgesturechange
? - Is it right to use
touchmove
for detecting one-finger panning?