A Event corresponding to touchstart, touchend, touchmove or touchcancel. TouchEvent wraps the standard browser DOM event and provides lists of Touch objects.

Constructors

Properties

changedTouches: Touch[] = []

A list of touches that have changed since the last event.

element: Element

The target DOM element that the event was fired from.

event: TouchEvent

The original browser TouchEvent.

touches: Touch[] = []

A list of all touches currently in contact with the device.

Methods

  • Get an event from one of the touch lists by the id. It is useful to access touches by their id so that you can be sure you are referencing the same touch.

    Parameters

    • id: number

      The identifier of the touch.

    • list: Touch[]

      An array of touches to search.

    Returns Touch

    The Touch object or null.