Touch.clientX - Web APIs 编辑
The Touch.clientX
read-only property returns the X coordinate of the touch point relative to the viewport, not including any scroll offset.
Syntax
touchItem.clientX;
Return value
A long
representing the X coordinate of the touch point relative to the viewport, not including any scroll offset.
Example
This example illustrates using the Touch
object's Touch.clientX
and Touch.clientY
properties. The Touch.clientX
property is the horizontal coordinate of a touch point relative to the browser's viewport excluding any scroll offset. The Touch.clientY
property is the vertical coordinate of the touch point relative to the browser's viewport excluding any scroll offset .
In this example, we assume the user initiates a touch on an element with an id of source
, moves within the element or out of the element and then releases contact with the surface. When the touchend
event handler is invoked, the changes in the Touch.clientX
and Touch.clientY
coordinates, from the starting touch point to the ending touch point, are calculated.
// Register touchstart and touchend listeners for element 'source'
var src = document.getElementById("source");
var clientX, clientY;
src.addEventListener('touchstart', function(e) {
// Cache the client X/Y coordinates
clientX = e.touches[0].clientX;
clientY = e.touches[0].clientY;
}, false);
src.addEventListener('touchend', function(e) {
var deltaX, deltaY;
// Compute the change in X and Y coordinates.
// The first touch point in the changedTouches
// list is the touch point that was just removed from the surface.
deltaX = e.changedTouches[0].clientX - clientX;
deltaY = e.changedTouches[0].clientY - clientY;
// Process the data ...
}, false);
Specifications
Specification | Status | Comment |
---|---|---|
Touch Events – Level 2 | Draft | Non-stable version. |
Touch Events | Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论