web api event
Element: gesturestart event
The gesturestart event is fired when multiple fingers contact the touch surface, thus starting a new gesture. During the gesture, gesturechange events will be fired. When the gesture has ended, a gestureend event will be fired.
It is a proprietary event specific to WebKit.
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("gesturestart", (event) => { })
ongesturestart = (event) => { }
Event type
A GestureEvent. Inherits from Event.
Specifications
Not part of any specification.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.