HarmonyOS animateTo的duration无效
使用animateTo修改Circle的value,但是动画时间感觉一直都是1秒,设置了duration也没有用
@Entry
@Component
export struct Index3 {
@State countDownProgress: number = 0;
build() {
Column() {
Button('动画')
.onClick(() => {
animateTo( {
duration: 16000,
},() => {
this.countDownProgress = 1;
})
})
Progress({
value: this.countDownProgress,
total: 1,
type: ProgressType.Ring
})
.width(60)
.height(60)
.color(Color.Blue)
.style({
strokeWidth: 2,
})
}
}
}
HarmonyOS
赞
收藏 0
回答 1
待解决
相关问题
postgresql9.4日志配置log_min_duration_statement无效?
4308浏览 • 1回复 待解决
HarmonyOS中animateTo如何结束动画
862浏览 • 2回复 待解决
HarmonyOS router默认跳转页面的duration是多少
430浏览 • 1回复 待解决
animateTo动画如何直接停止
2564浏览 • 2回复 待解决
animateTo动画如何暂停
917浏览 • 2回复 待解决
HarmonyOS animateTo是否能够打断动画
52浏览 • 1回复 待解决
HarmonyOS animateTo或animation动画如何取消
94浏览 • 1回复 待解决
HarmonyOS 关于animateTo显示动画加载时机
406浏览 • 1回复 待解决
HarmonyOS animateTo过渡动画问题,内部文字显示异常
30浏览 • 1回复 待解决
HarmonyOS 无限循环的 animateTo 动画有办法主动停止吗?
129浏览 • 1回复 待解决
CommonDialog的setSwipeToDismiss(false)无效
6382浏览 • 1回复 待解决
HarmonyOS designWidth设置无效
40浏览 • 1回复 待解决
notifyDataChanged() 无效
6560浏览 • 4回复 待解决
HarmonyOS 设置 bodercolor 无效
355浏览 • 1回复 待解决
HarmonyOS animateTo这个有监听动画进行的回调方法吗
28浏览 • 1回复 待解决
HarmonyOS NavDestination中使用LocalStorage无效的问题
70浏览 • 1回复 待解决
HarmonyOS appRecovery.restartApp无效
338浏览 • 1回复 待解决
HarmonyOS Text内部Span的宽度设置无效
45浏览 • 1回复 待解决
HarmonyOS React-Navigation无效
37浏览 • 1回复 待解决
HarmonyOS 复制黏贴功能无效
317浏览 • 1回复 待解决
HarmonyOS 读取相册图片无效
26浏览 • 1回复 待解决
HarmonyOS 更换图标无效
252浏览 • 2回复 待解决
HarmonyOS bindPopup设置color无效
825浏览 • 0回复 待解决
ArkTS设置文件模版无效 ArkTS设置文件模版无效
465浏览 • 1回复 待解决
animateTo动画中duration最长动画时间就是1S,超过1000系统默认为1000,以下有一个实现进度条动画demo,可参考以下: