赞
踩
通过bindContentCover属性为组件绑定全屏模态页面,在组件插入和删除时可通过设置转场参数ModalTransition显示过渡动效。
说明:
从API Version 10开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
不支持横竖屏切换。
不支持路由跳转。
bindContentCover(isShow: boolean, builder: CustomBuilder, options?: ContentCoverOptions)
给组件绑定全屏模态页面,点击后显示模态页面。模态页面内容自定义,显示方式可设置无动画过渡,上下切换过渡以及透明渐变过渡方式。
系统能力: SystemCapability.ArkUI.ArkUI.Full
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
isShow | boolean | 是 | 是否显示全屏模态页面。 从API version 10开始,该参数支持$$双向绑定变量。 |
builder | CustomBuilder | 是 | 配置全屏模态页面内容。 |
options | ContentCoverOptions | 否 | 配置全屏模态页面的可选属性。 |
继承自BindOptions。
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
modalTransition | ModalTransition | 否 | 全屏模态页面的转场方式。 |
全屏模态无动画转场模式下,自定义转场动画。
- // xxx.ets
- @Entry
- @Component
- struct ModalTransitionExample {
- @State isShow:boolean = false
- @State isShow2:boolean = false
-
- @Builder myBuilder2() {
- Column() {
- Button("close modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = false;
- })
- }
- .width('100%')
- .height('100%')
- }
-
- @Builder myBuilder() {
- Column() {
- Button("transition modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = true;
- }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Orange, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
-
- Button("close modal 1")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow = false;
- })
- }
- .width('100%')
- .height('100%')
- .justifyContent(FlexAlign.Center)
- }
-
- build() {
- Column() {
- Button("transition modal 1")
- .onClick(() => {
- this.isShow = true
- })
- .fontSize(20)
- .margin(10)
- .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
- }
- .justifyContent(FlexAlign.Center)
- .backgroundColor("#ff49c8ab")
- .width('100%')
- .height('100%')
- }
- }
全屏模态无动画转场模式下,自定义转场动画。
- // xxx.ets
- import curves from '@ohos.curves';
- @Entry
- @Component
- struct ModalTransitionExample {
- @State @Watch("isShow1Change") isShow:boolean = false
- @State @Watch("isShow2Change") isShow2:boolean = false
- @State isScale1:number = 1;
- @State isScale2:number = 1;
-
- isShow1Change() {
- this.isShow ? this.isScale1 = 0.95 : this.isScale1 = 1
- }
- isShow2Change() {
- this.isShow2 ? this.isScale2 = 0.95 : this.isScale2 = 1
- }
- @Builder myBuilder2() {
- Column() {
- Button("close modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = false;
- })
- }
- .width('100%')
- .height('100%')
- }
-
-
- @Builder myBuilder() {
- Column() {
- Button("transition modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = true;
- }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Orange, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
-
- Button("close modal 1")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow = false;
- })
- }
- .width('100%')
- .height('100%')
- .justifyContent(FlexAlign.Center)
- .scale({x: this.isScale2, y: this.isScale2})
- .animation({curve:curves.springMotion()})
- }
-
- build() {
- Column() {
- Button("transition modal 1")
- .onClick(() => {
- this.isShow = true
- })
- .fontSize(20)
- .margin(10)
- .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.NONE, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
- }
- .justifyContent(FlexAlign.Center)
- .backgroundColor("#ff49c8ab")
- .width('100%')
- .height('100%')
- .scale({ x: this.isScale1, y: this.isScale1 })
- .animation({ curve: curves.springMotion() })
- }
- }
全屏模态上下切换转场。
- // xxx.ets
- @Entry
- @Component
- struct ModalTransitionExample {
- @State isShow:boolean = false
- @State isShow2:boolean = false
-
- @Builder myBuilder2() {
- Column() {
- Button("close modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = false;
- })
- }
- .width('100%')
- .height('100%')
- }
-
- @Builder myBuilder() {
- Column() {
- Button("transition modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = true;
- }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.DEFAULT, backgroundColor: Color.Gray, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
-
- Button("close modal 1")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow = false;
- })
- }
- .width('100%')
- .height('100%')
- .justifyContent(FlexAlign.Center)
- }
-
- build() {
- Column() {
- Button("transition modal 1")
- .onClick(() => {
- this.isShow = true
- })
- .fontSize(20)
- .margin(10)
- .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.DEFAULT, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
- }
- .justifyContent(FlexAlign.Center)
- .backgroundColor(Color.White)
- .width('100%')
- .height('100%')
- }
- }
全屏模态透明度渐变转场。
- // xxx.ets
- @Entry
- @Component
- struct ModalTransitionExample {
- @State isShow:boolean = false
- @State isShow2:boolean = false
-
- @Builder myBuilder2() {
- Column() {
- Button("close modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = false;
- })
- }
- .width('100%')
- .height('100%')
- .justifyContent(FlexAlign.Center)
- }
-
-
- @Builder myBuilder() {
- Column() {
- Button("transition modal 2")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow2 = true;
- }).bindContentCover(this.isShow2, this.myBuilder2(), {modalTransition: ModalTransition.ALPHA, backgroundColor: Color.Gray, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
-
- Button("close modal 1")
- .margin(10)
- .fontSize(20)
- .onClick(()=>{
- this.isShow = false;
- })
- }
- .width('100%')
- .height('100%')
- .justifyContent(FlexAlign.Center)
- }
-
- build() {
- Column() {
- Button("transition modal 1")
- .onClick(() => {
- this.isShow = true
- })
- .fontSize(20)
- .margin(10)
- .bindContentCover(this.isShow, this.myBuilder(), {modalTransition: ModalTransition.ALPHA, backgroundColor: Color.Pink, onAppear: () => {console.log("BindContentCover onAppear.")}, onDisappear: () => {console.log("BindContentCover onDisappear.")}})
- }
- .justifyContent(FlexAlign.Center)
- .backgroundColor(Color.White)
- .width('100%')
- .height('100%')
- }
- }
最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。
这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了(ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。
希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!
获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料
HarmonOS基础技能
有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)与鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。
获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料
OpenHarmony北向、南向开发环境搭建
获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料
总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。