ts-basic-gestures-rotationgesture.md 2.2 KB
Newer Older
Z
zengyawen 已提交
1
# RotationGesture
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 26 27 28 29 30 31 32 33 34 35 36 37 38

## 接口

RotationGesture(options?: { fingers?: number, angle?: number })

- 参数
  | 参数名称 | 参数类型 | 必填 | 默认值 | 参数描述 | 
  | -------- | -------- | -------- | -------- | -------- |
  | fingers | number | 否 | 2 | 触发旋转的最少手指数, 最小为2指,最大为5指。 | 
  | angle | number | 否 | 1.0 | 触发旋转手势的最小改变度数,单位为度数。 | 


## 事件

| 名称 | 功能描述 | 
| -------- | -------- | -------- |
| onActionStart((event?: RotationGestureEvent) => void) | Rotation手势识别成功回调。 | 
| onActionUpdate((event?: RotationGestureEvent) => void) | Rotation手势移动过程中回调。 | 
| onActionEnd((event?: RotationGestureEvent) => void) | Rotation手势识别成功,手指抬起后触发回调。 | 
| onActionCancel(event: () => void) | Rotation手势识别成功,接收到触摸取消事件触发回调。 | 

- RotationGestureEvent对象说明<sup>8+</sup>
  | 属性名称 | 属性类型 | 描述 | 
  | -------- | -------- | -------- |
  | angle | number | 旋转角度。 | 


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

```
@Entry
@Component
struct RotationGestureExample {
  @State angle: number = 0

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
      Text('RotationGesture angle:' + this.angle)
    }
    .height(100).width(200).padding(20).border({ width:1 })
    .margin(80).rotate({ x:1, y:2, z:3, angle: this.angle })
    .gesture(
      RotationGesture()
Z
zengyawen 已提交
54
        .onActionStart((event: RotationGestureEvent) => {
Z
zengyawen 已提交
55 56
          console.log('Rotation start')
        })
Z
zengyawen 已提交
57
        .onActionUpdate((event: RotationGestureEvent) => {
Z
zengyawen 已提交
58 59 60 61 62 63 64 65 66 67
          this.angle = event.angle
        })
        .onActionEnd(() => {
          console.log('Rotation end')
        })
    )
  }
}
```

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