HarmonyOS list中item的交互效果处理

点击图标,变小转圈圈等mqtt收到成功消息显示,变更√图标图标恢复原来大小。

HarmonyOS
2024-10-14 09:48:59
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

可以使用显示动画去触发,可以参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-explicit-animation-V5

可参照如下demo实现想要的效果:

import { UIContext } from '@ohos.arkui.UIContext';  
@Entry  
@Component  
struct KeyframeDemo {  
  @State myScale: number = 1.0  
  @State progressValue: number = 0  
  @State imageInfo: ResourceStr = $r('sys.media.ohos_ic_bottomsheet_close')  
  aboutToAppear() {  
  }  
  build() {  
    Stack() {  
      Column() {  
        Image(this.imageInfo)  
          .fillColor(Color.White)  
      }  
      .width(100)  
      .height(100)  
      .borderRadius(50)  
      .backgroundColor("#46B1E3")  
      .scale({ x: this.myScale, y: this.myScale })  
  
      Progress({ value: this.progressValue, total: 100, type: ProgressType.Ring })  
        .style({ strokeWidth: 2 })  
        .color(Color.Blue)  
        .width(82)  
        .visibility(this.progressValue >= 100 ? Visibility.None : Visibility.Visible)  
    }  
    .margin(100)  
    .onClick(() => {  
      this.myScale = 1  
      animateTo({  
        duration: 1000,  
        curve: Curve.EaseOut,  
        iterations: 1,  
        playMode: PlayMode.Normal,  
        onFinish: () => {  
          setInterval(() => {  
            this.progressValue = this.progressValue + 10  
            if (this.progressValue >= 100) {  
              animateTo({  
                duration: 1000,  
                curve: Curve.EaseOut,  
                iterations: 1,  
                playMode: PlayMode.Normal,  
                onFinish: () => {  
                }  
              }, () => {  
                this.myScale = 1  
                this.imageInfo = $r('sys.media.ohos_ic_public_arrow_right')  
              })  
            }  
          }, 50)  
        }  
      }, () => {  
        this.myScale = 0.8  
      })  
    })  
  }  
}
分享
微博
QQ
微信
回复
2024-10-14 17:44:53
相关问题
HarmonyOS listitem支持托动效果吗?
161浏览 • 1回复 待解决
HarmonyOS List item 刷新问题
602浏览 • 1回复 待解决
HarmonyOS listitem如何保存状态
193浏览 • 2回复 待解决
HarmonyOS list编辑移动效果
146浏览 • 1回复 待解决
怎么获取List里面每个itemposition?
176浏览 • 1回复 待解决
listadd跟remove item入场、出场动画
1063浏览 • 1回复 待解决
如何实现list折叠动画效果
374浏览 • 1回复 待解决
Listitem点击变色有什么好方法吗
2015浏览 • 1回复 待解决
如何将List回弹效果改为阴影效果
354浏览 • 1回复 待解决
list-item 根据boolean属性 动态设置class
4742浏览 • 1回复 待解决
JS swiper 怎么像list一样动态添加item
6227浏览 • 1回复 待解决
ListContainerItem能取消拖拽吗
4958浏览 • 1回复 待解决