Skip to main content
Version: 23.8.0

TouchHandle.move() 方法

¥TouchHandle.move() method

为此触摸发送 touchMove 事件。

¥Dispatches a touchMove event for this touch.

签名

¥Signature

interface TouchHandle {
move(x: number, y: number): Promise<void>;
}

参数

¥Parameters

范围

类型

描述

x

数字

移动的水平位置。

y

数字

移动的垂直位置。

Returns:

Promise<void>