HarmonyOS 如何画一个半圆,并进行一个从0°到360°的动画

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

请参考此demo:

@Entry
@Component
struct Arc {
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
  private path2Db: Path2D = new Path2D()

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .borderStyle(BorderStyle.Dotted)
        .transition(TransitionEffect.OPACITY.animation({ duration: 2000, curve: Curve.Ease }).combine(
          TransitionEffect.rotate({ z: 1, angle: 180 }) //进行360旋转
        ))
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.path2Db.arc(200, 300, 100, 0, 3.14) //用arc画半圆
          this.context.stroke(this.path2Db)
        })
    }
    .width('100%')
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
如何实现一个动画弹窗?
524浏览 • 1回复 待解决
HarmonyOS怎么手机弄一个文件出来?
481浏览 • 1回复 待解决
如何一个文件进行读写操作
496浏览 • 1回复 待解决
HarmonyOS 数组中随机获取一个数值
44浏览 • 1回复 待解决