ts-basic-gestures-rotationgesture.md 2.1 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

## 接口

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

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


## 事件

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

K
kukixi 已提交
32
- GestureEvent对象中与Rotation手势相关的属性
Z
zengyawen 已提交
33 34 35 36 37 38
  | 属性名称 | 属性类型 | 描述 | 
  | -------- | -------- | -------- |
  | angle | number | 旋转角度。 | 


## 示例
Z
zengyawen 已提交
39

H
geshi  
HelloCrease 已提交
40 41
```ts
// xxx.ets
Z
zengyawen 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54
@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()
K
kukixi 已提交
55
        .onActionStart((event: GestureEvent) => {
Z
zengyawen 已提交
56 57
          console.log('Rotation start')
        })
K
kukixi 已提交
58
        .onActionUpdate((event: GestureEvent) => {
Z
zengyawen 已提交
59 60 61 62 63 64 65 66 67 68
          this.angle = event.angle
        })
        .onActionEnd(() => {
          console.log('Rotation end')
        })
    )
  }
}
```

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