HarmonyOS打开对话框时如何实现从下到上出现的动画?

builder: AccountSelectDialog(),  
   autoCancel: true,  
   alignment: DialogAlignment.Bottom,  
   offset: { dx: 0, dy: 0, },  
   customStyle: true,  
   cornerRadius: 0,  
   openAnimation: {  
     curve: Curve.EaseIn,  
     playMode: PlayMode.Alternate,  
     onFinish: () => {  
       console.info('play end')  
     }  
   },
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.

openAnimation如何做才能实现像页面这种从下至上显示的动画。像页面这种API的这种效果。

pageTransition() {  
   PageTransitionEnter({ duration: 500, curve: Curve.Linear }).slide(SlideEffect.Bottom)  
   PageTransitionExit({ duration: 500, curve: Curve.Linear }).slide(SlideEffect.Bottom)  
 }
  • 1.
  • 2.
  • 3.
  • 4.
HarmonyOS
2024-09-29 10:39:23
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
superinsect

参考demo:

let anmDuration: number = 300;  
// 弹窗交互  
@CustomDialog  
struct AccountSelectDialog {  
  controller: CustomDialogController = new CustomDialogController({  
    builder: AccountSelectDialog({}),  
    autoCancel: false  
  })  
  @State showFlag: Visibility = Visibility.Visible;  
  @State isAutoCancel: boolean = false;  
  textController: TextAreaController = new TextAreaController()  
  @State eventType: string = ''  
  @State touchDown:number = 0  
  @State touchUp:number = 0  
  build() {  
    Column() {  
      Row() {  
        Text("自定义动画的弹窗")  
      }  
      .borderRadius(20)  
      .backgroundColor('#ff6288cb')  
      .height(200)  
      .width('100%')  
    }  
    .margin({top:10})  
    .justifyContent(FlexAlign.Center)  
    .width('100%')  
    .height("100%")  
    // .expandSafeArea([SafeAreaType.SYSTEM], [SafeAreaEdge.BOTTOM])  
    .onTouch((event?: TouchEvent) => {  
      if(event){  
        if (event.type === TouchType.Down) {  
          this.eventType = 'Down'  
          this.touchDown = event.touches[0].y  
        }  
        if (event.type === TouchType.Up) {  
          this.eventType = 'Up'  
          this.touchUp = event.touches[0].y  
        }  
        if (event.type === TouchType.Move) {  
          this.eventType = 'Move'  
        }  
        if (this.touchUp - this.touchDown > 0) {  
          this.cancel()  
        }  
      }  
    })  
    .visibility(this.showFlag)  
    // 定义进场出场转场动画效果  
    .transition(TransitionEffect.OPACITY.animation({ duration: anmDuration })  
      .combine(TransitionEffect.translate({ y: 500 })))  
  }  
  // 延迟关闭弹窗,让自定义的出场动画显示  
  cancel() {  
    this.showFlag = Visibility.Hidden  
    console.log("closeDialog")  
    setTimeout(() => {  
      this.controller.close()  
    }, anmDuration)  
  }  
}  
@Entry  
@Component  
struct CustomDialogUser {  
  @State isAutoCancel: boolean = true;  
  dialogController: CustomDialogController = new CustomDialogController({  
    builder: AccountSelectDialog(),  
    autoCancel: true,  
    alignment: DialogAlignment.Bottom,  
    offset: { dx: 0, dy: 0, },  
    customStyle: true,  
    cornerRadius: 0,  
    openAnimation: {  
      curve: Curve.EaseIn,  
      playMode: PlayMode.Alternate,  
      onFinish: () => {  
        console.info('play end')  
      }  
    }  
  })  
  build() {  
    Column() {  
      Button('click me')  
        .onClick(() => {  
          this.dialogController.open()  
        })  
    }.width('100%')  
    .height('100%')  
  }  
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
分享
微博
QQ
微信
回复
2024-09-29 16:10:11


相关问题
HarmonyOS 对话框布局
443浏览 • 1回复 待解决
HarmonyOS 弹出对话框
719浏览 • 1回复 待解决
HarmonyOS 对话框弹出页面被遮挡
787浏览 • 1回复 待解决
HarmonyOS class中创建对话框不能显示
645浏览 • 1回复 待解决
HarmonyOS 页面跳转后对话框不消失
740浏览 • 1回复 待解决
HarmonyOS 自定义对话框控制器
427浏览 • 1回复 待解决
如何封装一个自定义Dialog对话框
2803浏览 • 1回复 待解决