#鸿蒙通关秘籍#如何使用geometryTransition实现HarmonyOS NEXT一镜到底动效?

HarmonyOS
2024-12-04 13:37:15
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
墨舞涯CPV

使用geometryTransition可以轻松实现一镜到底动画效果。首先,在需要添加动画效果的两个组件中,绑定相同的geometryTransition ID。确保组件状态发生改变时,系统自动添加过渡动画。

import { curves } from '@kit.ArkUI';

@Entry
@Component
struct IfElseGeometryTransition {
  @State isShow: boolean = false;

  build() {
    Stack({ alignContent: Alignment.Center }) {
      if (this.isShow) {
        Image($r('app.media.spring'))
          .autoResize(false)
          .clip(true)
          .width(200)
          .height(200)
          .borderRadius(100)
          .geometryTransition("picture")
          .transition(TransitionEffect.OPACITY)
          .id('item1')
      } else {
        Column() {
          Column() {
            Image($r('app.media.sky'))
              .size({ width: '100%', height: '100%' })
          }
          .size({ width: '100%', height: '100%' })
        }
        .width(100)
        .height(100)
        .borderRadius(50)
        .clip(true)
        .geometryTransition("picture")
        .transition(TransitionEffect.OPACITY)
        .position({ x: 40, y: 40 })
        .id('item2')
      }
    }
    .onClick(() => {
      animateTo({
        curve: curves.springMotion()
      }, () => {
        this.isShow = !this.isShow;
      })
    })
    .size({ width: '100%', height: '100%' })
  }
}
分享
微博
QQ
微信
回复
2024-12-04 15:49:02
相关问题
HarmonyOS 发现页的到底方案实现
159浏览 • 1回复 待解决
HarmonyOS 属性如何打断
68浏览 • 1回复 待解决