ts-basic-gestures-pinchgesture.md 2.3 KB
Newer Older
Z
zengyawen 已提交
1
# PinchGesture
Z
zengyawen 已提交
2

Z
zengyawen 已提交
3 4
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
5

Z
zengyawen 已提交
6 7

## 权限列表
Z
zengyawen 已提交
8 9


Z
zengyawen 已提交
10

Z
zengyawen 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

## 接口

PinchGesture(options?: { fingers?: number, distance?: number })

- 参数
  | 参数名称 | 参数类型 | 必填 | 默认值 | 参数描述 | 
  | -------- | -------- | -------- | -------- | -------- |
  | fingers | number | 否 | 2 | 触发捏合的最少手指数, 最小为2指,最大为5指。 | 
  | distance | number | 否 | 3.0 | 最小识别距离,单位为vp。 | 


## 事件

| 名称 | 功能描述 | 
26
| -------- | -------- | 
K
kukixi 已提交
27 28 29
| onActionStart((event?: GestureEvent) => void) | Pinch手势识别成功回调。 | 
| onActionUpdate((event?: GestureEvent) => void) | Pinch手势移动过程中回调。 | 
| onActionEnd((event?: GestureEvent) => void) | Pinch手势识别成功,手指抬起后触发回调。 | 
Z
zengyawen 已提交
30 31
| onActionCancel(event: () => void) | Pinch手势识别成功,接收到触摸取消事件触发回调。 | 

K
kukixi 已提交
32
- GestureEvent对象中与Pinch手势相关的属性
Z
zengyawen 已提交
33 34 35 36 37 38 39 40
  | 属性名称 | 属性类型 | 描述 | 
  | -------- | -------- | -------- |
  | scale | number | 缩放比例,用于PinchGesture手势触发场景。 | 
  | pinchCenterX | number | 捏合手势中心点X轴坐标,单位为px。 | 
  | pinchCenterY | number | 捏合手势中心点Y轴坐标,单位为px。 | 


## 示例
Z
zengyawen 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

```
@Entry
@Component
struct PinchGestureExample {
  @State scale: number = 1

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
      Text('PinchGesture scale:' + this.scale)
    }
    .height(100).width(200).padding(20).border({ width: 1 }).margin(80)
    .scale({ x: this.scale, y: this.scale, z: this.scale })
    .gesture(
      PinchGesture()
K
kukixi 已提交
56
        .onActionStart((event: GestureEvent) => {
Z
zengyawen 已提交
57 58
          console.info('Pinch start')
        })
K
kukixi 已提交
59
        .onActionUpdate((event: GestureEvent) => {
Z
zengyawen 已提交
60 61 62 63 64 65 66 67 68 69
          this.scale = event.scale
        })
        .onActionEnd(() => {
          console.info('Pinch end')
        })
    )
  }
}
```

Z
zengyawen 已提交
70
![zh-cn_image_0000001174582848](figures/zh-cn_image_0000001174582848.gif)