HarmonyOS animateTo是否能够打断动画

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

请参考示例如下:

@Entry
@Component
struct Index {
  @State angle: number = 0;
  isPlaying: boolean = false;

  build() {
    Column() {
      Text("abc")
        .borderWidth(1)
        .rotate({angle:this.angle})

      Row() {
        Text("start")
          .onClick(() => {
            if (this.isPlaying) {
              return;
            }
            this.angle = 0;
            animateTo({iterations: -1, curve:Curve.Linear}, ()=> {
              this.angle = 360;
            });
            this.isPlaying = true;
          })
        Text("stop")
          .onClick(() => {
            if (this.isPlaying) {
              animateTo({ duration: 0 }, () => {
                // 在duration为0的动画里改变要停下来的属性值
                this.angle = 0;
              })
              this.isPlaying = false;
            }
          })
      }.width("100%").justifyContent(FlexAlign.SpaceAround).margin({ top: 50 })
    }.width('100%')
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
框架是否能够拉起应用APP
3371浏览 • 2回复 待解决
是否能够自定义router跳转的url
899浏览 • 1回复 待解决
IPC跨进程通讯是否能够异步返回数据
423浏览 • 1回复 待解决
animateTo动画如何暂停
917浏览 • 2回复 待解决
HarmonyOSanimateTo如何结束动画
859浏览 • 2回复 待解决
animateTo动画如何直接停止
2560浏览 • 2回复 待解决
refresh期望能够自定义loading动画
1008浏览 • 1回复 待解决
HarmonyOS 用户崩溃是否能共享
376浏览 • 1回复 待解决