Touchscreen.touchMove() 方法
¥Touchscreen.touchMove() method
在第一个活动触摸时发送 touchMove 事件。
¥Dispatches a touchMove event on the first touch that is active.
签名
¥Signature
class Touchscreen {
touchMove(x: number, y: number): Promise<void>;
}
参数
¥Parameters
范围 | 类型 | 描述 |
|---|---|---|
x | 数字 | 移动的水平位置。 |
y | 数字 | 移动的垂直位置。 |
Returns:
Promise<void>
备注
¥Remarks
并非每个 touchMove 调用都会导致触发 touchmove 事件,具体取决于浏览器的优化。例如,Chrome throttles 触摸移动事件。
¥Not every touchMove call results in a touchmove event being emitted, depending on the browser's optimizations. For example, Chrome throttles touch move events.