TouchEvent
open class TouchEvent(val type: EventType<TouchEvent>, init: TouchEventInit = definedExternally) : UIEvent(source)
The TouchEvent
interface represents an UIEvent which is sent when the state of contacts with a touch-sensitive surface changes.
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The changedTouches
read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows: - For the Element/touchstart_event event, it is a list of the touch points that became active with the current event.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The targetTouches
read-only property is a TouchList listing all the Touch objects for touch points that are still in contact with the touch surface and whose Element/touchstart_event event occurred inside the same target element as the current target element.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard