🔰touch event
browser ⟩ event ⟩ type ⟩ touch
"touchstart" - finger (may be another finger) touches the screen.
"touchmove" - finger moved while touching.
"touchend" - finger leaves the screen (other fingers may still be touching).
"touchcancel" - a touch point has been disrupted in some way.
If you tap the screen, you’ll get
touch events:"touchstart", "touchend", then
mouse events:"mousedown", "mouseup", "click"❗
if you tap the screen with 2 fingers, it may tigger events like the following:
or the following:
if you touch the screen
with 1 finger (and hold)
and then with a second finger
release second finger
release first finger
it might tigger events like the following:
Last updated