1# PinchGesture 2 3用于触发捏合手势,触发捏合手势的最少手指为2指,最大为5指,最小识别距离为3vp。 4 5> **说明:** 6> 7> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 8 9 10## 接口 11 12PinchGesture(value?: { fingers?: number, distance?: number }) 13 14**参数:** 15 16| 参数名称 | 参数类型 | 必填 | 参数描述 | 17| -------- | -------- | -------- | -------- | 18| fingers | number | 否 | 触发捏合的最少手指数, 最小为2指,最大为5指。<br/>默认值:2 | 19| distance | number | 否 | 最小识别距离,单位为vp。<br/>默认值:3 | 20 21 22## 事件 23 24| 名称 | 功能描述 | 25| -------- | -------- | 26| onActionStart(event:(event?: [GestureEvent](ts-gesture-settings.md#gestureevent对象说明)) => void) | Pinch手势识别成功回调。 | 27| onActionUpdate(event:(event?: [GestureEvent](ts-gesture-settings.md#gestureevent对象说明)) => void) | Pinch手势移动过程中回调。 | 28| onActionEnd(event:(event?: [GestureEvent](ts-gesture-settings.md#gestureevent对象说明)) => void) | Pinch手势识别成功,手指抬起后触发回调。 | 29| onActionCancel(event: () => void) | Pinch手势识别成功,接收到触摸取消事件触发回调。 | 30 31 32## 示例 33 34```ts 35// xxx.ets 36@Entry 37@Component 38struct PinchGestureExample { 39 @State scaleValue: number = 1 40 @State pinchValue: number = 1 41 @State pinchX: number = 0 42 @State pinchY: number = 0 43 44 build() { 45 Column() { 46 Column() { 47 Text('PinchGesture scale:\n' + this.scaleValue) 48 Text('PinchGesture center:\n(' + this.pinchX + ',' + this.pinchY + ')') 49 } 50 .height(200) 51 .width(300) 52 .padding(20) 53 .border({ width: 3 }) 54 .margin({ top: 100 }) 55 .scale({ x: this.scaleValue, y: this.scaleValue, z: 1 }) 56 // 三指捏合触发该手势事件 57 .gesture( 58 PinchGesture({ fingers: 3 }) 59 .onActionStart((event: GestureEvent) => { 60 console.info('Pinch start') 61 }) 62 .onActionUpdate((event: GestureEvent) => { 63 this.scaleValue = this.pinchValue * event.scale 64 this.pinchX = event.pinchCenterX 65 this.pinchY = event.pinchCenterY 66 }) 67 .onActionEnd(() => { 68 this.pinchValue = this.scaleValue 69 console.info('Pinch end') 70 }) 71 ) 72 }.width('100%') 73 } 74} 75``` 76 77 ![zh-cn_image_0000001174582848](figures/zh-cn_image_0000001174582848.png) 78