[文章]HarmonyOS应用API手势方法-RotationGesture

阅读量0
0
0

描述:用于触发旋转手势事件,触发旋转手势的最少手指为2指,最大为5指,最小改变度数为1度。

Api:从API Version 7开始支持

接口:RotationGesture(value?: { fingers?: number, angle?: number })

参数:
#盲盒+码#HarmonyOS应用API手势方法-RotationGesture-开源基础软件社区
事件:
#盲盒+码#HarmonyOS应用API手势方法-RotationGesture-开源基础软件社区
示例代码:

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

  build() {
    Column() {
      Column() {
        Text('RotationGesture angle:' + this.angle).fontSize(20)
      }
      .height(200)
      .width(300)
      .padding(20)
      .border({ width: 3 })
      .margin(80)
      .rotate({ angle: this.angle })
      // 双指旋转触发该手势事件
      .gesture(
      RotationGesture()
        .onActionStart((event: GestureEvent) => {
          console.info('Rotation start');
        })
        .onActionUpdate((event: GestureEvent) => {
          this.angle = this.rotateValue + event.angle;
        })
        .onActionEnd(() => {
          this.rotateValue = this.angle;
          console.info('Rotation end');
        })
      )
    }.width('100%')
  }
}

1.2.3.4.5.6.7.8.9.10.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.

复制

示例效果:
#盲盒+码#HarmonyOS应用API手势方法-RotationGesture-开源基础软件社区
代码地址:(https://gitee.com/jltfcloudcn/jump_to/tree/master/TapGesture)

回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友