docs.rodeo

MDN Web Docs mirror

Element: gestureend event

{{APIRef}} {{Non-standard_header}} 

The gestureend event is fired when there are no longer multiple fingers contacting the touch surface, thus ending the gesture.

It is a proprietary event specific to WebKit.

Syntax

Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}} , or set an event handler property.

addEventListener("gestureend", (event) => {});

ongestureend = (event) => {};

Event type

A {{domxref("GestureEvent")}} . Inherits from {{domxref("Event")}} .

{{InheritanceDiagram("GestureEvent")}} 

Event properties

This interface also inherits properties of its parents, {{domxref("UIEvent")}}  and {{domxref("Event")}} .

Specifications

Not part of any specification.

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN