当前位置:   article > 正文

【HarmonyOS】深入了解 ArkUI 的动画交互以提高用户体验_arkui 共享元素动画

arkui 共享元素动画

        从今天开始,博主将开设一门新的专栏用来讲解市面上比较热门的技术 “鸿蒙开发”,对于刚接触这项技术的小伙伴在学习鸿蒙开发之前,有必要先了解一下鸿蒙,从你的角度来讲,你认为什么是鸿蒙呢?它出现的意义又是什么?鸿蒙仅仅是一个手机操作系统吗?它的出现能够和Android和IOS三分天下吗?它未来的潜力能否制霸整个手机市场呢?

抱着这样的疑问和对鸿蒙开发的好奇,让我们开始今天对ArkUI动画操作的掌握吧!

目录

ArkUI动画操作

属性动画

显示动画

组件转场动画

弹簧曲线动画

路径动画

共享元素转场动画

页面转场动画


ArkUI动画操作

在学习动画操作之前,我们先了解一下动画实现的原理,动画的实现原理说白了就是无数个静态画面快速播放,达到我们肉眼是无法识别的临界值,呈现我们视觉感官的就是动态画面,像电影拍摄拍出来的胶卷就是一帧一帧的画面,它的播放速度是每秒24帧,只要播放速度足够快,人眼就部分识别它是静态的了。

所以接下来我们开始学习如何在ArkUI中实现动画操作,动画可以说是app当中必备的一个功能了,它可以大大提高用户交互时的一个体验。我们在开发应用时实现动画也是一样的,我们只需要把一个物体运动的开始状态和结束状态以及中间的每一帧画面快速地描述出来,那么动画就形成了,当然这个描述肯定不需要我们自己写代码把每一帧都描述出来,ArkUI底层简化了我们的开发,我们只需要把一个组件运行时它的一个初始和结束状态描述出来,ArkUI就会自动帮助我们去填充中间的每一帧画面,这样就有了动画的效果了。

识别动画的实现方式有很多,而在ArkUI中比较常见的实现方式就有以下几种实现方式:

动画是通过设置组件的animation属性来给组件添加动画,当组件的width、height、Opacity、backgroundColor、scale、rotate、translate等属性变更时,可以实现渐变过渡效果。动画设置简单,属性变化时自动触发动画,以下是animation属性可以传递使用的动画参数:

名称参数类型必填描述
durationnumber设置动画时长,默认值:1000,单位毫秒
temponumber动画播放速度。数值越大,速度越快。默认值:1
curvestring|Curve设置动画曲线。默认值:Curve.EaseInOut,平滑开始和结束。
delaynumber设置动画延迟执行的时长。默认值:0,单位:毫秒
iterationsnumber设置播放次数。默认值:1,取值范围 [-1,+\infty),-1表示无限次播放
playModePlayMode动画播放模式,默认播放完成后重头开始播放,默认值:PlayMode.Normal
onFinish()=>void状态回调,动画播放完成时触发

关于curve属性的详解,以下是其常用的函数名称:

名称描述
Linear表示动画从头到尾的速度都是相同的。
Ease表示动画以低速开始,然后加快,在结束前变慢。
EaseIn表示动画以低速开始
EaseOut表示动画以低速结束
EaseInOut表示动画以低速开始和结束
FastOutSlowIn标准曲线
LinearOutSlowIn减速曲线
FastOutLinearIn加速曲线
ExtremeDeceleration急缓曲线
Sharp锐利曲线
Rhythm节奏曲线
Smooth平滑曲线

属性动画

属性动画无需使用闭包,把animation属性加在要做属性动画的组件的属性后面即可,想要组件随某个属性值变化而产生动画,此属性需要加在animation属性之前,有的属性变化不希望通过animation产生属性动画,可以放在animation之后。属性动画的接口函数如下:

animation(value: AnimateParam)

以下给出属性动画执行的范例: 

  1. @Entry
  2. @Component
  3. struct test {
  4. @State boxWidth: number = 100
  5. @State boxHeight: number = 100
  6. @State bgColor: Color = Color.Red
  7. @State flag: boolean = false
  8. build(){
  9. Stack({
  10. alignContent: Alignment.BottomEnd // 设置Stack层叠组件按钮居于最下方
  11. }){
  12. Column(){
  13. Row(){
  14. }
  15. .width(this.boxWidth)
  16. .height(this.boxHeight)
  17. .animation({
  18. duration: 1000
  19. })
  20. .backgroundColor(this.bgColor)
  21. }
  22. .width('100%')
  23. .height('100%')
  24. .justifyContent(FlexAlign.Center)
  25. Button(){
  26. Text('动画')
  27. .fontSize(20)
  28. .fontColor(Color.White)
  29. }
  30. .width(60)
  31. .height(60)
  32. .margin({ bottom: 10, right: 10 })
  33. .onClick(()=>{
  34. if (this.flag) {
  35. this.boxWidth = 100
  36. this.boxHeight = 100
  37. this.bgColor = Color.Red
  38. }else {
  39. this.boxWidth = 200
  40. this.boxHeight = 200
  41. this.bgColor = Color.Green
  42. }
  43. this.flag = !this.flag
  44. })
  45. }
  46. }
  47. }

最终呈现的效果如下: 

给个下面的案例加深一下印象吧,使用translate改变一下元素的位置:

  1. // 公共样式
  2. @Extend(Text) function actionSheet() {
  3. .fontSize(18)
  4. .fontColor('#666')
  5. .width('100%')
  6. .height(20)
  7. .textAlign(TextAlign.Center)
  8. }
  9. @Entry
  10. @Component
  11. struct test {
  12. @State boxPosition: number = 220
  13. @State flag: boolean = false
  14. build(){
  15. Stack({
  16. alignContent: Alignment.BottomEnd
  17. }){
  18. Column(){
  19. Button(){
  20. Text('show actionSheet')
  21. .fontSize(30)
  22. .fontColor(Color.White)
  23. }
  24. .onClick(()=>{
  25. animateTo({
  26. duration: 500
  27. },()=>{
  28. if(this.flag){
  29. this.boxPosition = 220
  30. }else {
  31. this.boxPosition = 0
  32. }
  33. this.flag = !this.flag
  34. })
  35. })
  36. .width('80%')
  37. .height(60)
  38. }
  39. .width('100%')
  40. .height('100%')
  41. .justifyContent(FlexAlign.Center)
  42. Column(){
  43. List({ space: 44 }){
  44. ListItem(){
  45. Text('相册选择')
  46. .actionSheet()
  47. }
  48. ListItem(){
  49. Text('相机拍照')
  50. .actionSheet()
  51. }
  52. ListItem(){
  53. Text('取消')
  54. .actionSheet()
  55. }
  56. }
  57. .divider({ strokeWidth: 1, color: Color.Gray })
  58. }
  59. .width('100%')
  60. .height(220)
  61. .justifyContent(FlexAlign.Center)
  62. .backgroundColor('#efefef')
  63. .translate({
  64. y: this.boxPosition
  65. })
  66. }
  67. }
  68. }

结果如下:

显示动画

闭包内的变化均会触发动画,包括由数据变化引起的组件的增删、组件属性的变化等,可以做较为复杂的动画,其显示动画的接口为如下函数,第一个参数指定动画参数,第二个参数为动画的闭包函数。

animateTo(value: AnimateParam, event: () => void): void

以下给出显示动画执行的范例:

  1. @Entry
  2. @Component
  3. struct test {
  4. @State boxWidth: number = 100
  5. @State boxHeight: number = 100
  6. @State flag: boolean = false
  7. build(){
  8. Stack({
  9. alignContent: Alignment.BottomEnd // 设置Stack层叠组件按钮居于最下方
  10. }){
  11. Column(){
  12. Row(){
  13. }
  14. .width(this.boxWidth)
  15. .height(this.boxHeight)
  16. .backgroundColor(Color.Red)
  17. }
  18. .width('100%')
  19. .height('100%')
  20. .justifyContent(FlexAlign.Center)
  21. Button(){
  22. Text('动画')
  23. .fontSize(20)
  24. .fontColor(Color.White)
  25. }
  26. .width(60)
  27. .height(60)
  28. .margin({ bottom: 10, right: 10 })
  29. .onClick(()=>{
  30. animateTo({
  31. duration: 1000, // 动画的执行时间
  32. },()=>{
  33. if (this.flag) {
  34. this.boxWidth = 100
  35. this.boxHeight = 100
  36. }else {
  37. this.boxWidth = 200
  38. this.boxHeight = 200
  39. }
  40. this.flag = !this.flag
  41. })
  42. })
  43. }
  44. }
  45. }

最终呈现的效果如下:

当然我们也可以给显示动画函数加一些动画参数,使动画效果更有视觉性,如下:

组件转场动画

组件的插入、删除过程即为组件本身的转场过程,组件的插入、删除动画称为组件内转场动画。通过组件内转场动画,可以定义组件出现、消失的效果。transition函数的入参为组件内转场的效果,可以定义平移、透明度、旋转、缩放这几种转场样式的单个或者组合的转场效果,必须和animateTo一起使用才能产生组件的转场效果。组件内转场动画的接口为如下代码:

transition(value: TransitionOptions)

以下给出组件转场动画执行的范例:

  1. @Entry
  2. @Component
  3. struct test {
  4. @State flag: boolean = false
  5. build(){
  6. Stack({
  7. alignContent: Alignment.BottomEnd
  8. }){
  9. Column(){
  10. if(this.flag){
  11. Row(){
  12. Image("https://img-blog.csdnimg.cn/direct/b4ef01bec5c54a25b07024e76c8e6b0d.jpeg")
  13. .width(200)
  14. .height(200)
  15. }
  16. .width(200)
  17. .height(200)
  18. .justifyContent(FlexAlign.Center)
  19. .transition({
  20. type: TransitionType.Insert, // 显示执行动画
  21. opacity: 0,
  22. translate: { x: 300, y: 200 },
  23. scale: { x: 0, y: 0 }
  24. })
  25. .transition({
  26. type: TransitionType.Delete, // 删除执行动画
  27. opacity: 0,
  28. translate: { x: -300, y: 200 },
  29. scale: { x: 0, y: 0 }
  30. })
  31. }
  32. }
  33. .width('100%')
  34. .height('100%')
  35. .padding(20)
  36. .alignItems(HorizontalAlign.Center)
  37. .justifyContent(FlexAlign.Center)
  38. Button(){
  39. Text(this.flag ? '隐藏' : '显示')
  40. .fontColor(Color.White)
  41. .fontSize(20)
  42. .onClick(()=>{
  43. animateTo({
  44. duration: 1000
  45. },()=>{
  46. this.flag = !this.flag
  47. })
  48. })
  49. }
  50. .width(80)
  51. .height(80)
  52. .margin({ bottom: 10, right: 10 })
  53. }
  54. }
  55. }

最终呈现的效果如下: 

弹簧曲线动画

ArkUI提供了预置动画曲线,指定了动画属性从起始值到终止值的变化规律,如Linear、Ease、EaseIn等。同时ArKUI也提供了由弹簧振子物理模型产生的弹簧曲线。通过弹簧曲线,开发者可以设置超过设置的终止值,在终止值附近震荡,直至最终停下来的效果。弹簧曲线的动画效果比其他曲线具有更强的互动性、可玩性。

弹簧曲线的接口包括两类,一类是springCurve,另一类是springMotion和responsiveSpringMotion,这两种方式都可以产生弹簧曲线,这里主要给大家讲解一下springCurve实现登录界面抖动动画,其springCurve的接口函数如下:

构造函数包括初速度(velocity)、弹簧系统的质量(mass)、刚度(stiffness)、阻尼(damping)。构建springCurve时,可指定质量为1,根据springCurve中的参数说明,调节刚度、阻尼两个参数,达到想要的震荡效果。

springCurve(velocity: number, mass: number, stiffness: number, damping: number)

以下给出弹簧曲线动画执行的范例: 

  1. import curves from '@ohos.curves'
  2. @Entry
  3. @Component
  4. struct test {
  5. @State translateX: number = 0
  6. jumpWidthSpeed(velocity: number) {
  7. this.translateX = 10 // 起始位置
  8. animateTo({
  9. duration: 1000,
  10. curve: curves.springCurve(velocity, 1, 1, 1)
  11. },()=>{
  12. this.translateX = 0 // 最终的位置
  13. })
  14. }
  15. build(){
  16. Column(){
  17. Row(){
  18. Text("登录框")
  19. .width('100%')
  20. .fontSize(40)
  21. .textAlign(TextAlign.Center)
  22. }
  23. .width(200)
  24. .height(200)
  25. .margin({ top: 20 })
  26. .backgroundColor(Color.Gray)
  27. .translate({
  28. x: this.translateX
  29. })
  30. Row(){
  31. Button("jump 10")
  32. .fontSize(14)
  33. .onClick(()=>{
  34. this.jumpWidthSpeed(10) // 以初速度10的弹簧曲线进行平移
  35. })
  36. Button("jump 200")
  37. .fontSize(14)
  38. .onClick(()=>{
  39. this.jumpWidthSpeed(200) // 以初速度200的弹簧曲线进行平移
  40. })
  41. }
  42. .width('100%')
  43. .margin({ top: 40 })
  44. .justifyContent(FlexAlign.SpaceAround)
  45. }
  46. .width('100%')
  47. .height('100%')
  48. }
  49. }

最终呈现的效果如下: 

路径动画

通过路径动画也可以实现弹簧曲线,使用路径动画我们可以自定义我们元素的运动轨迹,以下是路径动画实现的接口函数:

path表示位移动画的运动路径;from表示运动路径的起点;to表示运动路径的终点;rotatable表示是否跟随路径进行旋转。

motionPath({path: string, from?: number, to?: number, rotatable?: boolean})

以下给出路径动画执行的范例:  

  1. @Entry
  2. @Component
  3. struct test {
  4. @State flag: boolean = true
  5. build(){
  6. Column(){
  7. Row(){
  8. Text('路径曲线')
  9. .fontSize(20)
  10. .width('100%')
  11. .textAlign(TextAlign.Center)
  12. }
  13. .width(100)
  14. .height(100)
  15. .backgroundColor(Color.Gray)
  16. // 按照我们设置的坐标(10,600)、(400,600)、(400,500)这三个点进行运动
  17. .motionPath({ path: 'Mstart.x start.y L10 600 L400 600 L400 500 Lend.x end.y', from: 0.0, to: 1.0, rotatable: false })
  18. .margin(10)
  19. .onClick(()=>{
  20. animateTo({
  21. duration: 4000
  22. },()=>{
  23. this.flag = !this.flag
  24. })
  25. })
  26. }
  27. .width('100%')
  28. .height('100%')
  29. .justifyContent(FlexAlign.Start)
  30. .alignItems(this.flag ? HorizontalAlign.Start : HorizontalAlign.End)
  31. }
  32. }

最终呈现的效果如下:  

共享元素转场动画

在不同页面间,有使用相同的元素(例如同一幅图)的场景,可以使用共享元素转场动画衔接。为了突出不同页面间相同元素的关联性,可为它们添加共享转场动画。如果相同元素在不同页面间的大小有差异,即可达到放大缩小视图的效果,共享元素转场的接口函数如下:

其中根据sharedTransitionOptions中的type参数,共享元素转场分为Exchange类型的共享元素转场和Static类型的共享元素转场。

sharedTransition(id: string, options?: sharedTransitionOptions)

Exchange类型的共享元素转场:交换型的共享元素转场,需要两个页面中存在通过sharedTransition函数配置为相同id的组件,它们称为共享元素。这种类型的共享元素转场适用于两个页面间相同元素的衔接,会从起始页共享元素的位置,大小过渡到目标页的共享元素的位置、大小。如果不指定type,默认为Exchange类型的共享元素转场,这也是最常见的共享元素转场的方式。使用Exchange类型的共享元素转场时,共享元素转场的动画参数由目标页options中的动画参数决定。以下给出实现的基本步骤:

1)我们在首页设置图片的默认转场,通过点击事件进行路由的跳转:

2)在另一个页面中我们通过sharedTransition函数配置为相同id的组件,将图片放大,然后点击图片后再回退到原始页面

实现的效果如下:

Static类型的共享元素转场:静态型的共享元素转场通常用于页面跳转时,标题逐渐出现或隐藏的场景,只需要在一个页面中有Static的共享元素,不能再两个页面中出现相同id的Static类型的共享元素。在跳转到该页面(即目标页)时,配置Static类型sharedTransition的组件做透明度从0到该组件设定的透明度的动画,位置保持不变。在该页面(即起始页)消失时,做透明度逐渐变为0的动画,位置保持不变。以下给出实现的基本步骤:

1)原页面还是通过Exchange给出图片的转场效果

2)另一个页面除了有图片之外,还有其他内容,比如text,这里设置文本内容为Static,有一个淡入淡出的效果实现

实现的效果如下:

结合共享元素转场动画效果,接下来我们实现朋友圈预览图片的效果案例 :

首先我们在主页面设置默认的Exchange转场效果:

  1. import router from '@ohos.router'
  2. interface ImageListData {
  3. uniqueId: string,
  4. author: string,
  5. imageUrl: string
  6. }
  7. @Entry
  8. @Component
  9. struct FriendPage {
  10. listData: ImageListData[] = [
  11. {
  12. "uniqueId": 'Candy-Shop',
  13. "author": 'Mohamed Chahin',
  14. "imageUrl": 'https://www.itying.com/images/flutter/1.png',
  15. },
  16. {
  17. "uniqueId": 'Childhood',
  18. "author": 'Google',
  19. "imageUrl": 'https://www.itying.com/images/flutter/2.png',
  20. },
  21. {
  22. "uniqueId": 'Alibaba-Shop',
  23. "author": 'Alibaba',
  24. "imageUrl": 'https://www.itying.com/images/flutter/3.png',
  25. },
  26. {
  27. "uniqueId": 'Alibaba-Shop1',
  28. "author": 'Alibaba1',
  29. "imageUrl": 'https://www.itying.com/images/flutter/4.png',
  30. },
  31. {
  32. "uniqueId": 'Alibaba-Shop2',
  33. "author": 'Alibaba2',
  34. "imageUrl": 'https://www.itying.com/images/flutter/5.png',
  35. },
  36. {
  37. "uniqueId": 'Alibaba-Shop3',
  38. "author": 'Alibaba3',
  39. "imageUrl": 'https://www.itying.com/images/flutter/6.png',
  40. },
  41. ]
  42. build() {
  43. Column(){
  44. Grid(){
  45. ForEach(this.listData,(item: ImageListData)=>{
  46. GridItem(){
  47. Image(item.imageUrl)
  48. .objectFit(ImageFit.Auto)
  49. .sharedTransition(item.uniqueId,{
  50. duration: 300
  51. })
  52. }
  53. .onClick(()=>{
  54. router.pushUrl({
  55. url: "pages/FriendImagePage",
  56. params: {
  57. uniqueId: item.uniqueId,
  58. imgUrl: item.imageUrl
  59. }
  60. })
  61. })
  62. })
  63. }
  64. .columnsTemplate(`1fr 1fr`)
  65. .columnsGap(10)
  66. .rowsGap(10)
  67. }
  68. .padding(10)
  69. .width('100%')
  70. .height('100%')
  71. }
  72. // 去掉页面转场动画
  73. pageTransition(){
  74. PageTransitionEnter({ type: RouteType.None, duration: 0 })
  75. PageTransitionExit({ type: RouteType.None, duration: 0 })
  76. }
  77. }

接下来我们在预览效果的页面设置Exchange转场和Static转场效果:

  1. import router from '@ohos.router'
  2. interface ImageListData {
  3. uniqueId: string,
  4. author: string,
  5. imageUrl: string
  6. }
  7. @Entry
  8. @Component
  9. struct FriendImagePage {
  10. @State uniqueId: string = ''
  11. @State imageIndex: number = 0
  12. listData: ImageListData[] = [
  13. {
  14. "uniqueId": 'Candy-Shop',
  15. "author": 'Mohamed Chahin',
  16. "imageUrl": 'https://www.itying.com/images/flutter/1.png',
  17. },
  18. {
  19. "uniqueId": 'Childhood',
  20. "author": 'Google',
  21. "imageUrl": 'https://www.itying.com/images/flutter/2.png',
  22. },
  23. {
  24. "uniqueId": 'Alibaba-Shop',
  25. "author": 'Alibaba',
  26. "imageUrl": 'https://www.itying.com/images/flutter/3.png',
  27. },
  28. {
  29. "uniqueId": 'Alibaba-Shop1',
  30. "author": 'Alibaba1',
  31. "imageUrl": 'https://www.itying.com/images/flutter/4.png',
  32. },
  33. {
  34. "uniqueId": 'Alibaba-Shop2',
  35. "author": 'Alibaba2',
  36. "imageUrl": 'https://www.itying.com/images/flutter/5.png',
  37. },
  38. {
  39. "uniqueId": 'Alibaba-Shop3',
  40. "author": 'Alibaba3',
  41. "imageUrl": 'https://www.itying.com/images/flutter/6.png',
  42. },
  43. ]
  44. // build方法执行之前触发
  45. aboutToAppear(){
  46. // 获取上一个页面的传值
  47. let params: object = router.getParams()
  48. this.uniqueId = params["uniqueId"]
  49. // 获取轮播图默认选中的索引值
  50. for (let index = 0; index < this.listData.length; index++) {
  51. if (this.listData[index].uniqueId == this.uniqueId) {
  52. this.imageIndex = index
  53. }
  54. }
  55. }
  56. // build方法执行完毕后触发
  57. onPageShow(){
  58. }
  59. // 页面销毁时触发
  60. onPageHide(){
  61. }
  62. build() {
  63. Row() {
  64. Column() {
  65. Swiper(){
  66. ForEach(this.listData,(item: ImageListData)=>{
  67. Image(item.imageUrl)
  68. .width('100%')
  69. .objectFit(ImageFit.Auto)
  70. .sharedTransition(item.uniqueId,{
  71. duration: 300
  72. })
  73. })
  74. }
  75. .height('100%')
  76. .index(this.imageIndex)
  77. }
  78. .width('100%')
  79. .height('100%')
  80. .backgroundColor(Color.Black)
  81. .justifyContent(FlexAlign.Center)
  82. .sharedTransition('bg',{ // 设置淡入淡出的效果
  83. duration: 300,
  84. type: SharedTransitionEffectType.Static
  85. })
  86. .onClick(()=>{
  87. router.back()
  88. })
  89. }
  90. }
  91. // 去掉页面转场动画
  92. pageTransition(){
  93. PageTransitionEnter({ type: RouteType.None, duration: 0 })
  94. PageTransitionExit({ type: RouteType.None, duration: 0 })
  95. }
  96. }

最终呈现的效果如下:

页面转场动画

两个页面发生跳转,一个页面消失,另一个页面出现,这时可以配置各自页面的页面转场参数实现自定义的页面转场效果。页面转场效果写在pageTransition函数中,通过PageTransitionEnter和PageTransitionExit指定页面进入和退出的动画效果。

PageTransitionEnter的接口为:

PageTransitionEnter({type?: RouteType, duration?: number, curve?: Curve | string, delay?:number)

PageTransitionExit的接口为:

PageTransitionExit({type?: RouteType, duration?: number, curve?: Curve|string, delay?:number})

上述接口定义了PageTransitionEnter和PageTransitionExit组件,可通过slide、 translate、 scale opacity属性定义不同的页面转场效果。对于PageTransitionEnter而言,这些效果表示入场时起点值,对于PageTransitionExit而言,这些效果表示退场的终点值,这一点与组件转场transition配置方法类似。此外,PageTransitionEnter提供了onEnter接口进行自定义页面入场动画的回调,PageTransitionExit提供了onExit接口进行自定义页面退场动画的回调。根据这个函数我们可以设置如下效果:

  1. // 自定义动画
  2. pageTransition(){
  3. PageTransitionEnter({
  4. duration: 1000,
  5. type: RouteType.None // 界面中的所有动画效果中,优先执行该自定义动画效果
  6. }).onEnter((type: RouteType, progress: number) => {
  7. }).slide(SlideEffect.Bottom) // 动画效果从下向上执行
  8. PageTransitionExit({
  9. duration: 1000,
  10. type: RouteType.None // 界面中的所有动画效果中,优先执行该自定义动画效果
  11. }).onExit((type: RouteType, progress: number) => {
  12. }).slide(SlideEffect.Right) // 动画效果从上向下执行
  13. }

拿之前的朋友圈预览图片的案例进行举例,如下:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/302745
推荐阅读
相关标签
  

闽ICP备14008679号