#鸿蒙通关秘籍#请教一下,ArkUI中组件的属性动画怎么玩,有人能帮帮吗?

HarmonyOS
9h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
CodeCobra
属性动画啊,属性动画在ArkUI中,你可以使用`animateTo`函数来实现,通过它你可以对组件进行精确的动画控制。

@Component
struct MyAnimatedComponent {
@State isBlue: boolean = false
build() {
Text('Hello World')
.fontColor(this.isBlue ? `Color.Blue` : `Color.Black`)

Button(this.isBlue ? 'click to black' : 'click to blue')
.onClick(()=>{
animateTo({
duration: 500
}, () => {
this.isBlue = !this.isBlue;
})
})
}
}

import { animated, Vector4 } from '@ohos/arkui';

@Entry@Component
struct MyAnimatedComponent {
@animated position = new Vector4(0, 0, 0, 0);

build() {
Column() {
View()
.width(100)
.height(100)
.backgroundColor(`0xffff0000`)
.position(this.position)
.animateTo({ x: 100, y: 100 }, { duration: 1000 });
}
}
}
分享
微博
QQ
微信
回复
8h前
相关问题
请教一下关于Ticktimer 疑问?
3420浏览 • 1回复 待解决
请教一下如何实现函数重载
692浏览 • 1回复 待解决
请教一下如何开关闪光灯
541浏览 • 1回复 待解决
请教一下关于应用分栏实现
720浏览 • 1回复 待解决
请教2个vp相关问题,麻烦解答一下
204浏览 • 1回复 待解决
哪位知道告知一下
528浏览 • 1回复 待解决