Window.onTouchMove

Function/Meaning

The finger has moved

Type
WindowclassEvent
Syntax
onTouchMove(x, y, cx, cy, id)
Arguments
x

The x-coordinate (in client coordinates) value of the touch position.

y

The y-coordinate (in client coordinates) value of the touch position.

cx

The number of horizontal pixels that the finger is in contact with.
Always 1 if the device does not support it.

cy

The number of vertical pixels that the finger is in contact with.
Always 1 if the device does not support it.

id

Touch ID.
At the time of multi-touch, a unique value is set for each position, and the position can be identified by this ID.

Return value
None (void)
Explanation

It occurs when the finger touching on the touch panel moves.