#鸿蒙通关秘籍#如何在HarmonyOS NEXT中实现自定义Tab的点击动画效果?

HarmonyOS
2024-12-06 15:08:34
1085浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
墨s年华RADIUS

在HarmonyOS NEXT中实现自定义Tab点击动画效果,可以按照以下步骤进行配置:

  1. 创建一个Text组件,使用onClick方法来监控Tab的点击事件。
  2. 记录当前点击的index,更新选中状态。
  3. 使用animateTo方法,实现Tab切换时的动画特效,动画过程中利用transitionX调整底部横线的位置。

示例代码如下:

Text(title)
  .textAlign(TextAlign.Center)
  .height($r('app.integer.width_and_height_value4'))
  .width(this.titleLengthRadix3 * title.length)
  .fontColor(this.currentIndex == idx ?
            (this.wantGoIndex == idx ? $r('app.color.background_color1'):$r('app.color.background_color2')):
            (this.wantGoIndex == idx ? $r('app.color.background_color1'):$r('app.color.background_color2')))
  .fontSize(this.currentIndex == idx ? $r('app.integer.font_size2') : $r('app.integer.font_size1'))
  .fontWeight(this.currentIndex == idx ? FontWeight.Bold : FontWeight.Normal)
  .onClick(() => {
    if (this.currentIndex != idx) {
      this.wantGoIndex = idx;
      animateTo({
        duration: Math.abs(idx - this.currentIndex) * this.durationRadix,
        curve: Curve.EaseInOut,
        iterations: this.iterationsDefault,
        playMode: PlayMode.Normal,
        onFinish: () => {
          this.currentIndex = idx;
          this.scroller.scrollToIndex(this.currentIndex, true, ScrollAlign.START);
        }
      }, () => {
        this.transitionX = this.getTransitionX(idx);
      })
    }
  })
  • 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.
分享
微博
QQ
微信
回复
2024-12-06 17:48:42


相关问题