请参考如下代码:@Entry @Component struct ImageAnimateToRotate{ @State message: string = 'Hello World'; @State imageAngle: number = 0 build() { Column() { Image($r('app.media.startIcon')).width(200).height(200) .rotate({ z: 1, angle: this.imageAngle }) .onAppear(() => { animateTo({ duration: 5000, iterations: -1 }, () => { this.imageAngle = 360 }) }) } .height('100%') .width('100%') } }
请参考如下代码: