Element: touchmove event

The touchmove event is fired when one or more touch points are moved along the touch surface.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

js
addEventListener("touchmove", (event) => { })

ontouchmove = (event) => { }

Event type

A TouchEvent. Inherits from Event.

EventUIEventTouchEvent

Examples

Code samples for those events are available on the dedicated page: Touch events.

Specifications

See also