#鸿蒙通关秘籍#怎样在鸿蒙系统中实现模态页面的上下切换过渡效果?

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

在鸿蒙系统中,可以通过设置modalTransition属性来实现模态页面的上下切换过渡效果。这是一个完整的代码实现:

// xxx.ets
@Entry
@Component
struct ModalTransitionExample {
  @State isShow:boolean = false

  @Builder myBuilder() {
    Column() {
      Button("关闭模态")
        .margin(10)
        .fontSize(20)
        .onClick(()=>{
          this.isShow = false;
        })
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }

  build() {
    Column() {
      Button("开启模态")
        .onClick(() => {
          this.isShow = true
        })
        .fontSize(20)
        .margin(10)
        .bindContentCover(this.isShow, this.myBuilder(), {
          modalTransition: ModalTransition.DEFAULT, 
          backgroundColor: Color.Pink, 
          onWillAppear: () => {console.log("BindContentCover onWillAppear.")}, 
          onAppear: () => {console.log("BindContentCover onAppear.")}, 
          onWillDisappear: () => {console.log("BindContentCover onWillDisappear.")}, 
          onDisappear: () => {console.log("BindContentCover onDisappear.")}
        })
    }
    .justifyContent(FlexAlign.Center)
    .backgroundColor(Color.White)
    .width('100%')
    .height('100%')
  }
}

该代码实现了模态页面的上下滑动过渡效果,当用户点击按钮时,模态页面将从下至上显示。

分享
微博
QQ
微信
回复
7天前
相关问题