当前位置:   article > 正文

鸿蒙Harmony应用开发—ArkTS声明式开发(模态转场设置:全屏模态转场)_arkts customdialog铺满全屏

arkts customdialog铺满全屏

通过bindContentCover属性为组件绑定全屏模态页面,在组件插入和删除时可通过设置转场参数ModalTransition显示过渡动效。

说明:

从API Version 10开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

不支持横竖屏切换。

不支持路由跳转

bindContentCover

bindContentCover(isShow: boolean, builder: CustomBuilder, options?: ContentCoverOptions)

给组件绑定全屏模态页面,点击后显示模态页面。模态页面内容自定义,显示方式可设置无动画过渡,上下切换过渡以及透明渐变过渡方式。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
isShowboolean是否显示全屏模态页面。
从API version 10开始,该参数支持$$双向绑定变量。
builderCustomBuilder配置全屏模态页面内容。
optionsContentCoverOptions配置全屏模态页面的可选属性。

ContentCoverOptions

继承自BindOptions

名称类型必填描述
modalTransitionModalTransition全屏模态页面的转场方式。

示例

示例1

全屏模态无动画转场模式下,自定义转场动画。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ModalTransitionExample {
  5. @State isShow:boolean = false
  6. @State isShow2:boolean = false
  7. @Builder myBuilder2() {
  8. Column() {
  9. Button("close modal 2")
  10. .margin(10)
  11. .fontSize(20)
  12. .onClick(()=>{
  13. this.isShow2 = false;
  14. })
  15. }
  16. .width('100%')
  17. .height('100%')
  18. }
  19. @Builder myBuilder() {
  20. Column() {
  21. Button("transition modal 2")
  22. .margin(10)
  23. .fontSize(20)
  24. .onClick(()=>{
  25. this.isShow2 = true;
  26. }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Orange, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  27. Button("close modal 1")
  28. .margin(10)
  29. .fontSize(20)
  30. .onClick(()=>{
  31. this.isShow = false;
  32. })
  33. }
  34. .width('100%')
  35. .height('100%')
  36. .justifyContent(FlexAlign.Center)
  37. }
  38. build() {
  39. Column() {
  40. Button("transition modal 1")
  41. .onClick(() => {
  42. this.isShow = true
  43. })
  44. .fontSize(20)
  45. .margin(10)
  46. .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  47. }
  48. .justifyContent(FlexAlign.Center)
  49. .backgroundColor("#ff49c8ab")
  50. .width('100%')
  51. .height('100%')
  52. }
  53. }

zh-cn_full_screen_modal_none_1

示例2

全屏模态无动画转场模式下,自定义转场动画。

  1. // xxx.ets
  2. import curves from '@ohos.curves';
  3. @Entry
  4. @Component
  5. struct ModalTransitionExample {
  6. @State @Watch("isShow1Change") isShow:boolean = false
  7. @State @Watch("isShow2Change") isShow2:boolean = false
  8. @State isScale1:number = 1;
  9. @State isScale2:number = 1;
  10. isShow1Change() {
  11. this.isShow ? this.isScale1 = 0.95 : this.isScale1 = 1
  12. }
  13. isShow2Change() {
  14. this.isShow2 ? this.isScale2 = 0.95 : this.isScale2 = 1
  15. }
  16. @Builder myBuilder2() {
  17. Column() {
  18. Button("close modal 2")
  19. .margin(10)
  20. .fontSize(20)
  21. .onClick(()=>{
  22. this.isShow2 = false;
  23. })
  24. }
  25. .width('100%')
  26. .height('100%')
  27. }
  28. @Builder myBuilder() {
  29. Column() {
  30. Button("transition modal 2")
  31. .margin(10)
  32. .fontSize(20)
  33. .onClick(()=>{
  34. this.isShow2 = true;
  35. }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Orange, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  36. Button("close modal 1")
  37. .margin(10)
  38. .fontSize(20)
  39. .onClick(()=>{
  40. this.isShow = false;
  41. })
  42. }
  43. .width('100%')
  44. .height('100%')
  45. .justifyContent(FlexAlign.Center)
  46. .scale({x: this.isScale2, y: this.isScale2})
  47. .animation({curve:curves.springMotion()})
  48. }
  49. build() {
  50. Column() {
  51. Button("transition modal 1")
  52. .onClick(() => {
  53. this.isShow = true
  54. })
  55. .fontSize(20)
  56. .margin(10)
  57. .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  58. }
  59. .justifyContent(FlexAlign.Center)
  60. .backgroundColor("#ff49c8ab")
  61. .width('100%')
  62. .height('100%')
  63. .scale({ x: this.isScale1, y: this.isScale1 })
  64. .animation({ curve: curves.springMotion() })
  65. }
  66. }

zh-cn_full_screen_modal_none_2

示例3

全屏模态上下切换转场。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ModalTransitionExample {
  5. @State isShow:boolean = false
  6. @State isShow2:boolean = false
  7. @Builder myBuilder2() {
  8. Column() {
  9. Button("close modal 2")
  10. .margin(10)
  11. .fontSize(20)
  12. .onClick(()=>{
  13. this.isShow2 = false;
  14. })
  15. }
  16. .width('100%')
  17. .height('100%')
  18. }
  19. @Builder myBuilder() {
  20. Column() {
  21. Button("transition modal 2")
  22. .margin(10)
  23. .fontSize(20)
  24. .onClick(()=>{
  25. this.isShow2 = true;
  26. }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.DEFAULT, backgroundColor: Color.Gray, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  27. Button("close modal 1")
  28. .margin(10)
  29. .fontSize(20)
  30. .onClick(()=>{
  31. this.isShow = false;
  32. })
  33. }
  34. .width('100%')
  35. .height('100%')
  36. .justifyContent(FlexAlign.Center)
  37. }
  38. build() {
  39. Column() {
  40. Button("transition modal 1")
  41. .onClick(() => {
  42. this.isShow = true
  43. })
  44. .fontSize(20)
  45. .margin(10)
  46. .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.DEFAULT, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  47. }
  48. .justifyContent(FlexAlign.Center)
  49. .backgroundColor(Color.White)
  50. .width('100%')
  51. .height('100%')
  52. }
  53. }

zh-cn_full_screen_modal_default

示例4

全屏模态透明度渐变转场。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ModalTransitionExample {
  5. @State isShow:boolean = false
  6. @State isShow2:boolean = false
  7. @Builder myBuilder2() {
  8. Column() {
  9. Button("close modal 2")
  10. .margin(10)
  11. .fontSize(20)
  12. .onClick(()=>{
  13. this.isShow2 = false;
  14. })
  15. }
  16. .width('100%')
  17. .height('100%')
  18. .justifyContent(FlexAlign.Center)
  19. }
  20. @Builder myBuilder() {
  21. Column() {
  22. Button("transition modal 2")
  23. .margin(10)
  24. .fontSize(20)
  25. .onClick(()=>{
  26. this.isShow2 = true;
  27. }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.ALPHA, backgroundColor: Color.Gray, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  28. Button("close modal 1")
  29. .margin(10)
  30. .fontSize(20)
  31. .onClick(()=>{
  32. this.isShow = false;
  33. })
  34. }
  35. .width('100%')
  36. .height('100%')
  37. .justifyContent(FlexAlign.Center)
  38. }
  39. build() {
  40. Column() {
  41. Button("transition modal 1")
  42. .onClick(() => {
  43. this.isShow = true
  44. })
  45. .fontSize(20)
  46. .margin(10)
  47. .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.ALPHA, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
  48. }
  49. .justifyContent(FlexAlign.Center)
  50. .backgroundColor(Color.White)
  51. .width('100%')
  52. .height('100%')
  53. }
  54. }

zh-cn_full_screen_modal_alpha

最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

 获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号