gestureend
Fires when the user lifts the second finger from the element.
Notice: After the last finger is moved, the dragend
event is fired.
Example
<div id="touch">
Touch me with two fingers
</div>
<script>
$("#touch").kendoTouch({
multiTouch: true,
gestureend: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(e);
}
});
</script>
Event Data
e.touches Array
An array containing the active touches
e.event jQueryEvent
The jQuery event which triggered the touch event.
e.distance Number
The distance (in pixels) between the two touches
e.center Point
The center point between the two touches. The point has two properties, x
and y
, which contain the x and the y coordinate, respectively.