介绍
本示例介绍使用bindContentCover、transition、animateTo实现一镜到底转场动画,常用于首页搜索框点击进入搜索页场景。
效果图预览
使用说明
- 点击首页搜索框跳转到搜索页面显式一镜到底转场动画
实现思路
通过点击首页搜索框改变bindContentCover全屏模态转场中的isSearchPageShow参数控制页面是否显示,同时将modalTransition设置为NONE关闭全屏模态转场的动画,使用transition和animateTo实现首页到搜索页面的转场动画通过bindContentCover全屏模态转场衔接动画。
通过geometryTransition同时绑定首页和搜索页面的search框实现丝滑的上下文传承过渡,达到一镜到底的效果。
- 通过bindContentCover全屏模态转场实现对搜索页面显示的控制。
Column() {
Column() {
Search({ placeholder: $r('app.string.search_placeholder') })
.focusOnTouch(false)
.focusable(false)
.enableKeyboardOnFocus(false)
.backgroundColor('#E7E9E8')
.width(this.searchWidth)
.height(40)
.borderRadius($r('app.string.main_page_top_borderRadius'))
.onClick(() => {
this.onSearchClicked()
})
.geometryTransition(this.geometryId, { follow: true })
// 搜索框转场过渡动画,cubicBezierCurve为三阶贝塞尔曲线动画
.transition(TransitionEffect.OPACITY.animation({
duration: 200,
curve: curves.cubicBezierCurve(0.33, 0, 0.67, 1)
}))
}
.alignItems(HorizontalAlign.Start)
.backgroundColor('#E7E9E8')
.borderRadius($r('app.string.main_page_top_borderRadius'))
}
.position({ x: this.XPosition })
// TODO:知识点:通过bindContentCover属性为组件绑定全屏模态页面,在组件插入和删除时可通过设置转场参数ModalTransition显示过渡动效
.bindContentCover(this.isSearchPageShow, this.SearchPage(), {
modalTransition: ModalTransition.NONE,
onDisappear: () => {
this.onArrowClicked()
}
})
.alignItems(HorizontalAlign.Start)
.padding({ left: $r('app.string.main_page_padding'), right: $r('app.string.main_page_padding'), top: 48,bottom: 40})
}
2.通过geometryTransition同时绑定首页和搜索页面的search框实现丝滑的上下文传承过渡,使得原本独立的transition动画在空间位置上发生联系,将视觉焦点由旧视图位置引导到新视图位置。
Column() {
Search({ placeholder: $r('app.string.search_placeholder') })
.focusOnTouch(false)
.focusable(false)
.enableKeyboardOnFocus(false)
.backgroundColor('#E7E9E8')
.width(this.searchWidth)
.height(40)
.borderRadius($r('app.string.main_page_top_borderRadius'))
.onClick(() => {
this.onSearchClicked()
})
.geometryTransition(this.geometryId, { follow: true })
// 搜索框转场过渡动画,cubicBezierCurve为三阶贝塞尔曲线动画
.transition(TransitionEffect.OPACITY.animation({
duration: 200,
curve: curves.cubicBezierCurve(0.33, 0, 0.67, 1)
}))
}
3.通过transition组件内转场实现搜索页面消失显示过程中的过渡效果。
Image($r('app.media.ic_public_back'))
.width(20)
.onClick(() => {
this.onArrowClicked()
})
// TODO:知识点:通过transition属性配置转场参数,在组件插入和删除时显示过渡动效。非对称对称转场,第一个为出现动效有150的延迟,第二个为消失动效
.transition(TransitionEffect.asymmetric(
TransitionEffect.opacity(0)
.animation({ curve: curves.cubicBezierCurve(0.33, 0, 0.67, 1), duration: 200, delay: 150 }),
TransitionEffect.opacity(0)
.animation({ curve: curves.cubicBezierCurve(0.33, 0, 0.67, 1), duration: 200 }),
))
4.在切换过程中使用animateTo显式动画配合改变搜索框大小实现转换过程中的动画和一镜到底的效果。
private onSearchClicked(): void {
this.geometryId = 'search';
animateTo({
duration: 100,
// 构造插值器弹簧曲线对象,生成一条从0到1的动画曲线
curve: curves.interpolatingSpring(0, 1, 324, 38),
onFinish: () => {
this.geometryId = ''
}
}, () => {
this.searchWidth = 400;
this.isSearchPageShow = true;
})
}
工程结构&模块类型
SearchComponent // har类型(默认使用har类型,如果使用hsp类型请说明原因)
|---model
| |---ListData.ets // 筛选数据模型
|---SearchComponent.ets // 搜索模块
为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05
《鸿蒙开发学习手册》:
如何快速入门:https://qr21.cn/FV7h05
- 基本概念
- 构建第一个ArkTS应用
- ……
开发基础知识:https://qr21.cn/FV7h05
- 应用基础知识
- 配置文件
- 应用数据管理
- 应用安全管理
- 应用隐私保护
- 三方应用调用管控机制
- 资源分类与访问
- 学习ArkTS语言
- ……
基于ArkTS 开发:https://qr21.cn/FV7h05
- Ability开发
- UI开发
- 公共事件与通知
- 窗口管理
- 媒体
- 安全
- 网络与链接
- 电话服务
- 数据管理
- 后台任务(Background Task)管理
- 设备管理
- 设备使用信息统计
- DFX
- 国际化开发
- 折叠屏系列
- ……
鸿蒙开发面试真题(含参考答案):https://qr18.cn/F781PH
鸿蒙开发面试大盘集篇(共计319页):https://qr18.cn/F781PH
1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向