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

阅读量0
0
2

描述:用于触发滑动事件,滑动最小速度为100vp/s时识别成功。

Api:从API Version 8开始支持

接口:SwipeGesture(value?: { fingers?: number; direction?: SwipeDirection; speed?: number })

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

SwipeDirection枚举:

#盲盒+码#HarmonyOS应用API手势方法-SwipeGesture-开源基础软件社区
事件:

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

@Entry
@Component
struct SwipeGestureExample {
  @State rotateAngle: number = 0;
  @State speed: number = 1;

  build() {
    Column() {
      Column() {
        Text("SwipeGesture speed\n" + this.speed).fontSize(20)
        Text("SwipeGesture angle\n" + this.rotateAngle).fontSize(20)
      }
      .border({ width: 3 })
      .width(300)
      .height(200)
      .margin(100)
      .rotate({ angle: this.rotateAngle })
      // 单指竖直方向滑动时触发该事件
      .gesture(
      SwipeGesture({ direction: SwipeDirection.Vertical })
        .onAction((event: GestureEvent) => {
          this.speed = event.speed;
          this.rotateAngle = event.angle;
        })
      )
    }.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.

复制

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

回帖

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