# @ohos.multimodalInput.gestureEvent (手势输入事件) 设备上报的手势事件。 > **说明:** > > 本模å—首批接å£ä»ŽAPI version 10开始支æŒã€‚åŽç»ç‰ˆæœ¬çš„æ–°å¢žæŽ¥å£ï¼Œé‡‡ç”¨ä¸Šè§’æ ‡å•ç‹¬æ ‡è®°æŽ¥å£çš„起始版本。 ## å¯¼å…¥æ¨¡å— ```js import { Rotate, Pinch, ThreeFingersSwipe, FourFingersSwipe, ActionType } from '@kit.InputKit'; ``` ## Pinch æåˆäº‹ä»¶ã€‚ **系统能力**:SystemCapability.MultimodalInput.Input.Core | åç§° | 类型 | å¯è¯» | å¯å†™ | 说明 | | -------------- | ----------- | ---- | ---- | ---------------------------------------- | | type | [ActionType](#actiontype) | 是 | å¦ | æåˆäº‹ä»¶ç±»åž‹ | | scale | number | 是 | å¦ | æåˆåº¦ï¼Œå–值范围大于ç‰äºŽ0 | ## Rotate<sup>11+</sup> 旋转事件。 **系统能力**:SystemCapability.MultimodalInput.Input.Core | åç§° | 类型 | å¯è¯» | å¯å†™ | 说明 | | -------------- | ----------- | ---- | ---- | ---------------------------------------- | | type | [ActionType](#actiontype) | 是 | å¦ | 旋转事件类型 | | angle | number | 是 | å¦ | 旋转角度 | ## ThreeFingersSwipe 三指滑动事件。 **系统能力**:SystemCapability.MultimodalInput.Input.Core | åç§° | 类型 | å¯è¯» | å¯å†™ | 说明 | | -------------- | ----------- | ---- | ---- | ---------------------------------------- | | type | [ActionType](#actiontype) | 是 | å¦ | 三指滑动事件类型 | | x | number | 是 | å¦ | åæ ‡x | | y | number | 是 | å¦ | åæ ‡y | ## FourFingersSwipe 四指滑动事件。 **系统能力**:SystemCapability.MultimodalInput.Input.Core | åç§° | 类型 | å¯è¯» | å¯å†™ | 说明 | | -------------- | ----------- | ---- | ---- | ---------------------------------------- | | type | [ActionType](#actiontype) | 是 | å¦ | 四指滑动事件类型 | | x | number | 是 | å¦ | åæ ‡x | | y | number | 是 | å¦ | åæ ‡y | ## ThreeFingersTap<sup>11+</sup> 三指轻点事件。 **系统能力**:SystemCapability.MultimodalInput.Input.Core | åç§° | 类型 | å¯è¯» | å¯å†™ | 说明 | | ------------------ | ------------------------- | ---- | ---- | ---------------- | | type | [ActionType](#actiontype) | 是 | å¦ | 三指轻点事件类型 | ## ActionType 手势事件类型。 **系统能力**:SystemCapability.MultimodalInput.Input.Core | åç§° | 值 | 说明 | | ----------- | --- | --------------- | | CANCEL | 0 | å–æ¶ˆ | | BEGIN | 1 | 手势开始 | | UPDATE | 2 | 手势更新 | | END | 3 | æ‰‹åŠ¿ç»“æŸ |