42 Star 124 Fork 27

ArkUI-X / docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ts-basic-gestures-swipegesture.md 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
mamingshuai 提交于 2023-12-13 17:09 . Upgrade to ArkUI-X-1.0.0-Release

SwipeGesture

用于触发滑动事件,滑动速度大于100vp/s时可识别成功。

说明:

从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

接口

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

参数:

参数名称 参数类型 必填 参数描述
fingers number 触发滑动的最少手指数,默认为1,最小为1指,最大为10指。
默认值:1
direction SwipeDirection 触发滑动手势的滑动方向。
默认值:SwipeDirection.All
speed number 识别滑动的最小速度(默认为100VP/秒)。
默认值:100
说明:
当滑动速度的值小于等于0时,会被转化为默认值。

SwipeDirection枚举说明

名称 描述
All 所有方向。
Horizontal 水平方向,手指滑动方向与x轴夹角小于45度时触发。
Vertical 竖直方向,手指滑动方向与y轴夹角小于45度时触发。
None 任何方向均不可触发。

事件

名称 功能描述
onAction(event:(event?: GestureEvent) => void) 滑动手势识别成功回调。

示例

// xxx.ets
@Entry
@Component
struct SwipeGestureExample {
  @State rotateAngle: number = 0
  @State speed: number = 1

  build() {
    Column() {
      Column() {
        Text("SwipeGesture speed\n" + this.speed)
        Text("SwipeGesture angle\n" + this.rotateAngle)
      }
      .border({ width: 3 })
      .width(300)
      .height(200)
      .margin(100)
      .rotate({ angle: this.rotateAngle })
      // 单指竖直方向滑动时触发该事件
      .gesture(
      SwipeGesture({ direction: SwipeDirection.Vertical })
        .onAction((event?: GestureEvent) => {
          if (event) {
            this.speed = event.speed
            this.rotateAngle = event.angle
          }
        })
      )
    }.width('100%')
  }
}

zh-cn_image_0000001231374559.png

1
https://gitee.com/arkui-x/docs.git
git@gitee.com:arkui-x/docs.git
arkui-x
docs
docs
master

搜索帮助