TouchEvent - Web APIs 编辑
The TouchEvent
interface represents an UIEvent
which is 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.
Touches are represented by the Touch
object; each touch is described by a position, size and shape, amount of pressure, and target element. Lists of touches are represented by TouchList
objects.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 11.666666666666666%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 70" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/wiki/en-US/docs/Web/API/Event" target="_top"><rect x="1" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="38.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Event</text></a><polyline points="76,25 86,20 86,30 76,25" stroke="#D4DDE4" fill="none"/><line x1="86" y1="25" x2="116" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/wiki/en-US/docs/Web/API/UIEvent" target="_top"><rect x="116" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="153.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">UIEvent</text></a><polyline points="191,25 201,20 201,30 191,25" stroke="#D4DDE4" fill="none"/><line x1="201" y1="25" x2="231" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/wiki/en-US/docs/Web/API/TouchEvent" target="_top"><rect x="231" y="1" width="100" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="281" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">TouchEvent</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Constructor
TouchEvent()
- Creates a
TouchEvent
object.
Properties
This interface inherits properties from its parent, UIEvent
and Event
.
TouchEvent.altKey
Read only- A Boolean value indicating whether or not the alt key was down when the touch event was fired.
TouchEvent.changedTouches
Read only- A
TouchList
of all theTouch
objects representing individual points of contact whose states changed between the previous touch event and this one. TouchEvent.ctrlKey
Read only- A Boolean value indicating whether or not the control key was down when the touch event was fired.
TouchEvent.metaKey
Read only- A Boolean value indicating whether or not the meta key was down when the touch event was fired.
TouchEvent.shiftKey
Read only- A Boolean value indicating whether or not the shift key was down when the touch event was fired.
TouchEvent.targetTouches
Read only- A
TouchList
of all theTouch
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. TouchEvent.touches
Read only- A
TouchList
of all theTouch
objects representing all current points of contact with the surface, regardless of target or changed status. TouchEvent.rotation
Read only- Change in rotation (in degrees) since the event's beginning. Positive values indicate clockwise rotation; negative values indicate anticlockwise rotation. Initial value:
0.0
TouchEvent.scale
Read only- Distance between two digits since the event's beginning. Expressed as a floating-point multiple of the initial distance between the digits at the beginning of the event. Values below 1.0 indicate an inward pinch (zoom out). Values above 1.0 indicate an outward unpinch (zoom in). Initial value:
1.0
Touch event types
There are several types of event that can be fired to indicate that touch-related changes have occurred. You can determine which of these has happened by looking at the event's TouchEvent.type
property.
touchstart
Sent when the user places a touch point on the touch surface. The event's target will be the element
in which the touch occurred.
touchend
Sent when the user removes a touch point from the surface (that is, when they lift a finger or stylus from the surface). This is also sent if the touch point moves off the edge of the surface; for example, if the user's finger slides off the edge of the screen.
The event's target is the same element
that received the touchstart
event corresponding to the touch point, even if the touch point has moved outside that element.
The touch point (or points) that were removed from the surface can be found in the TouchList
specified by the changedTouches
attribute.
touchmove
Sent when the user moves a touch point along the surface. The event's target is the same element
that received the touchstart
event corresponding to the touch point, even if the touch point has moved outside that element.
This event is also sent if the values of the radius, rotation angle, or force attributes of a touch point change.
Note: The rate at whichtouchmove
events is sent is browser-specific, and may also vary depending on the capability of the user's hardware. You must not rely on a specific granularity of these events.touchcancel
Sent when a touch point has been disrupted in some way. There are several possible reasons why this might happen (and the exact reasons will vary from device to device, as well as browser to browser):
- An event of some kind occurred that canceled the touch; this might happen if a modal alert pops up during the interaction.
- The touch point has left the document window and moved into the browser's UI area, a plug-in, or other external content.
- The user has placed more touch points on the screen than can be supported, in which case the earliest
Touch
in theTouchList
gets canceled.
Using with addEventListener() and preventDefault()
It's important to note that in many cases, both touch and mouse events get sent (in order to let non-touch-specific code still interact with the user). If you use touch events, you should call preventDefault()
to keep the mouse event from being sent as well.
The exception to this is Chrome, starting with version 56 (desktop, Chrome for android, and android webview), where the default value for the passive
option for touchstart
and touchmove
is true
and calls to preventDefault()
will have no effect. To override this behavior, you need to set the passive
option to false
, after which calling preventDefault()
will work as specified. The change to treat listeners as passive
by default prevents the listener from blocking page rendering while a user is scrolling. A demo is available on the Google Developer site.
GlobalEventHandlers
The GlobalEventHandlers
mixin defines these events as global events that are available on any element in the DOM that the user can interact with.
GlobalEventHandlers.ontouchstart
- A global event handler for the
touchstart
event. GlobalEventHandlers.ontouchend
- A global event handler for the
touchend
event. GlobalEventHandlers.ontouchmove
- A global event handler for the
touchmove
event. GlobalEventHandlers.ontouchcancel
- A global event handler for the
touchcancel
event.
Example
See the example on the main Touch events article.
Specifications
Specification | Status | Comment |
---|---|---|
Touch Events – Level 2 The definition of 'TouchEvent' in that specification. | Draft | Added ontouchstart , ontouchend , ontouchmove , ontouchend global attribute handlers |
Touch Events The definition of 'TouchEvent' in that specification. | Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论