TouchEvent
The TouchEvent interface represents an event sent when the state of contacts with a touch-sensitive surface changes. This surface can be a touch screen or trackpad, for example. The event can describe one or more points of contact with the screen and includes support for detecting movement, addition and removal of contact points, and so forth.
Documentation TouchEvent by Mozilla Contributors, licensed under CC-BY-SA 2.5.
Instance Members
touches: TouchListA TouchList of all the Touch objects representing all current points of contact with the surface, regardless of target or changed status.
targetTouches: TouchListA TouchList of all the Touch objects that are both currently in contact with the touch surface and were also started on the same element that is the target of the event.
changedTouches: TouchListA TouchList of all the Touch objects representing individual points of contact whose states changed between the previous touch event and this one.
altKey: BoolA Boolean value indicating whether or not the alt key was down when the touch event was fired.
metaKey: BoolA Boolean value indicating whether or not the meta key was down when the touch event was fired.
ctrlKey: BoolA Boolean value indicating whether or not the control key was down when the touch event was fired.
shiftKey: BoolA Boolean value indicating whether or not the shift key was down when the touch event was fired.
initTouchEvent(type: String, ?canBubble: Bool = false, ?cancelable: Bool = false, ?view: Window, ?detail: Int = 0, ?ctrlKey: Bool = false, ?altKey: Bool = false, ?shiftKey: Bool = false, ?metaKey: Bool = false, ?touches: TouchList, ?targetTouches: TouchList, ?changedTouches: TouchList): Void| Name | Type | Default |
|---|---|---|
type |
String | |
canBubble |
Bool | false |
cancelable |
Bool | false |
view |
Window | (optional) |
detail |
Int | 0 |
ctrlKey |
Bool | false |
altKey |
Bool | false |
shiftKey |
Bool | false |
metaKey |
Bool | false |
touches |
TouchList | (optional) |
targetTouches |
TouchList | (optional) |
changedTouches |
TouchList | (optional) |
new(type: String, ?eventInitDict: Null<TouchEventInit>): Void| Name | Type | Default |
|---|---|---|
type |
String | |
eventInitDict |
Null<TouchEventInit> | (optional) |