HarmonyOS tabs无法和swiper一样设置effectMode属性,导致页面交互很奇怪

看了一下ArkUI Inspector的结构层级是基于swiper实现的期望tab组件添加effectMode来阻止边缘回弹效果

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

因HarmonyOS UX标准所有滑动都应有过界回弹效果, tabs组件边缘滑动效果是符合HarmonyOSUX标准的,可再试下如下demo:

@Entry
@Component
struct TabsExample {
  @State fontColor: string = '#182431'
  @State selectedFontColor: string = '#007DFF'
  @State currentIndex: number = 0
  private controller: TabsController = new TabsController()
  private panOption1: PanGestureOptions = new PanGestureOptions({ direction: PanDirection.Right })
  private panOption2: PanGestureOptions = new PanGestureOptions({ direction: PanDirection.Left })

  @Builder tabBuilder(index: number, name: string) {
    Column() {
      Text(name)
        .fontColor(this.currentIndex === index ? this.selectedFontColor : this.fontColor)
        .fontSize(16)
        .fontWeight(this.currentIndex === index ? 500 : 400)
        .lineHeight(22)
        .margin({ top: 17, bottom: 7 })
      Divider()
        .strokeWidth(2)
        .color('#007DFF')
        .opacity(this.currentIndex === index ? 1 : 0)
    }.width('100%')
  }
  build() {
    Column() {
      Tabs({ barPosition: BarPosition.Start, controller: this.controller }) {
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#00CB87')
        }.tabBar(this.tabBuilder(0, 'green'))
        // 左右拖动触发该手势事件
        .gesture(
          PanGesture(this.panOption1)
            .onActionStart((event?: GestureEvent) => {
              console.info('Pan start')
            })
            .onActionUpdate((event?: GestureEvent) => {
              if (event) {
              }
            })
            .onActionEnd(() => {
              console.info('Pan end')
            })
        )
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#007DFF')
        }.tabBar(this.tabBuilder(1, 'blue'))
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#FFBF00')
        }.tabBar(this.tabBuilder(2, 'yellow'))
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#E67C92')
        }.tabBar(this.tabBuilder(3, 'pink'))
        // 左右拖动触发该手势事件
        .gesture(
          PanGesture(this.panOption2)
            .onActionStart((event?: GestureEvent) => {
              console.info('Pan start')
            })
            .onActionUpdate((event?: GestureEvent) => {
              if (event) {
              }
            })
            .onActionEnd(() => {
              console.info('Pan end')
            })
        )
      }
      .vertical(false)
      .barMode(BarMode.Fixed)
      .barWidth(360)
      .barHeight(56)
      .animationDuration(400)
      .onChange((index: number) => {
        this.currentIndex = index
      })
      .width(360)
      .height(296)
      .margin({ top: 52 })
      .backgroundColor('#F1F3F5')
    }.width('100%')
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 原生H5页面交互
40浏览 • 1回复 待解决
JS swiper 怎么像list一样动态添加item?
6366浏览 • 1回复 待解决
鸿蒙安卓有什么不一样
6491浏览 • 3回复 待解决
#鸿蒙通关秘籍#HSPHAR有啥不一样
156浏览 • 1回复 待解决
HarmonyOS TabsSwiper联合使用问题
21浏览 • 1回复 待解决
Web组件获取高度不一样
2339浏览 • 1回复 待解决