鸿蒙OpenHarmony【共享元素转场 (一镜到底)】 ArkUI 转场动画 ...

打印 上一主题 下一主题

主题 673|帖子 673|积分 2019

共享元素转场 (一镜到底)

共享元素转场是一种界面切换时对相同大概相似的两个元素做的一种位置和大小匹配的过渡动画结果,也称一镜到底动效。
如下例所示,在点击图片后,该图片消失,同时在另一个位置出现新的图片,二者之间内容相同,可以对它们添加一镜到底动效。左图为不添加一镜到底动效的结果,右图为添加一镜到底动效的结果,一镜到底的结果能够让二者的出现消失产生联动,使得内容切换过程显得灵动天然而不生硬。

一镜到底的动效有多种实现方式,在现实开发过程中,应根据详细场景选择符合的方法举行实现。
以下是不同实现方式的对比:
一镜到底实现方式特点实用场景不新建容器直接变革原容器不发生路由跳转,需要在一个组件中实现展开及关闭两种状态的布局,展开后组件层级稳固。实用于转场开销小的简单场景,如点开页面无需加载大量数据及组件。新建容器并跨容器迁移组件通过使用NodeController,将组件从一个容器迁移到另一个容器,在开始迁移时,需要根据前后两个布局的位置大小等信息对组件添加位移及缩放,确保迁移开始时组件能够对齐初始布局,制止出现视觉上的跳变征象。之后再添加动画将位移及缩放等属性复位,实现组件从初始布局到目标布局的一镜到底过渡结果。实用于新建对象开销大的场景,如视频直播组件点击转为全屏等。使用geometryTransition共享元素转场利用体系能力,转场前后两个组件调用geometryTransition接口绑定同一id,同时将转场逻辑置于animateTo动画闭包内,这样体系侧会主动为二者添加一镜到底的过渡结果。体系将调整绑定的两个组件的宽高及位置至相同值,并切换二者的透明度,以实现一镜到底过渡结果。因此,为了实现流通的动画结果,需要确保对绑定geometryTransition的节点添加宽高动画不会有跳变。此方式实用于创建新节点开销小的场景。 不新建容器并直接变革原容器

该方法不新建容器,通过在已有容器上增删组件触发[transition],搭配组件[属性动画]实现一镜到底结果。
对于同一个容器展开,容器内兄弟组件消失大概出现的场景,可通过对同一个容器展开前后举行宽高位置变革并配置属性动画,对兄弟组件配置出现消失转场动画实现一镜到底结果。根本步骤为:

  • 构建需要展开的页面,并通过状态变量构建好普通状态和展开状态的界面。
    1. class Tmp {
    2.   set(item: PostData): PostData {
    3.     return item
    4.   }
    5. }
    6. // 通过状态变量的判断,在同一个组件内构建普通状态和展开状态的界面
    7. @Component
    8. export struct MyExtendView {
    9.   // 声明与父组件进行交互的是否展开状态变量
    10.   @Link isExpand: boolean;
    11.   // 列表数据需开发者自行实现
    12.   @State cardList: Array<PostData> = xxxx;
    13.   build() {
    14.     List() {
    15.       // 根据需要定制展开后的组件
    16.       if (this.isExpand) {
    17.         Text('expand')
    18.           .transition(TransitionEffect.translate({y:300}).animation({ curve: curves.springMotion(0.6, 0.8) }))
    19.       }
    20.       ForEach(this.cardList, (item: PostData) => {
    21.         let Item: Tmp = new Tmp()
    22.         let Imp: Tmp = Item.set(item)
    23.         let Mc: Record<string, Tmp> = {'cardData': Imp}
    24.         MyCard(Mc) // 封装的卡片组件,需自行实现
    25.       })
    26.     }
    27.     .width(this.isExpand ? 200 : 500) // 根据需要定义展开后组件的属性
    28.     .animation({ curve: curves.springMotion() }) // 为组件属性绑定动画
    29.   }
    30. }
    31. ...
    32. ts
    复制代码
  • 将需要展开的页面展开,通过状态变量控制兄弟组件消失或出现,并通过绑定出现消失转场实现兄弟组件转场结果。
    1. class Tmp{
    2.   isExpand: boolean = false;
    3.   set(){
    4.     this.isExpand = !this.isExpand;
    5.   }
    6. }
    7. let Exp:Record<string,boolean> = {'isExpand': false}
    8.   @State isExpand: boolean = false
    9.   
    10.   ...
    11.   List() {
    12.     // 通过是否展开状态变量控制兄弟组件的出现或者消失,并配置出现消失转场动画
    13.     if (!this.isExpand) {
    14.       Text('收起')
    15.         .transition(TransitionEffect.translate({y:300}).animation({ curve: curves.springMotion(0.6, 0.9) }))
    16.     }
    17.   
    18.     MyExtendView(Exp)
    19.       .onClick(() => {
    20.         let Epd:Tmp = new Tmp()
    21.         Epd.set()
    22.       })
    23.   
    24.     // 通过是否展开状态变量控制兄弟组件的出现或者消失,并配置出现消失转场动画
    25.     if (this.isExpand) {
    26.       Text('展开')
    27.         .transition(TransitionEffect.translate({y:300}).animation({ curve: curves.springMotion() }))
    28.     }
    29.   }
    30. ...
    31. ts
    复制代码
以点击卡片后显示卡片内容详情场景为例:
  1. class PostData {
  2.   avatar: Resource = $r('app.media.flower');
  3.   name: string = '';
  4.   message: string = '';
  5.   images: Resource[] = [];
  6. }
  7. @Entry
  8. @Component
  9. struct Index {
  10.   @State isExpand: boolean = false;
  11.   @State @Watch('onItemClicked') selectedIndex: number = -1;
  12.   private allPostData: PostData[] = [
  13.     { avatar: $r('app.media.flower'), name: 'Alice', message: '天气晴朗',
  14.       images: [$r('app.media.spring'), $r('app.media.tree')] },
  15.     { avatar: $r('app.media.sky'), name: 'Bob', message: '你好世界',
  16.       images: [$r('app.media.island')] },
  17.     { avatar: $r('app.media.tree'), name: 'Carl', message: '万物生长',
  18.       images: [$r('app.media.flower'), $r('app.media.sky'), $r('app.media.spring')] }];
  19.   private onItemClicked(): void {
  20.     if (this.selectedIndex < 0) {
  21.       return;
  22.     }
  23.     this.getUIContext()?.animateTo({
  24.       duration: 350,
  25.       curve: Curve.Friction
  26.     }, () => {
  27.       this.isExpand = !this.isExpand;
  28.     });
  29.   }
  30.   build() {
  31.     Column({ space: 20 }) {
  32.       ForEach(this.allPostData, (postData: PostData, index: number) => {
  33.         // 当点击了某个post后,会使其余的post消失下树
  34.         if (!this.isExpand || this.selectedIndex === index) {
  35.           Column() {
  36.             Post({ data: postData, selecteIndex: this.selectedIndex, index: index })
  37.           }
  38.           .width('100%')
  39.           // 对出现消失的post添加透明度转场和位移转场效果
  40.           .transition(TransitionEffect.OPACITY
  41.             .combine(TransitionEffect.translate({ y: index < this.selectedIndex ? -250 : 250 }))
  42.             .animation({ duration: 350, curve: Curve.Friction}))
  43.         }
  44.       }, (postData: PostData, index: number) => index.toString())
  45.     }
  46.     .size({ width: '100%', height: '100%' })
  47.     .backgroundColor('#40808080')
  48.   }
  49. }
  50. @Component
  51. export default struct  Post {
  52.   @Link selecteIndex: number;
  53.   @Prop data: PostData;
  54.   @Prop index: number;
  55.   @State itemHeight: number = 250;
  56.   @State isExpand: boolean = false;
  57.   @State expandImageSize: number = 100;
  58.   @State avatarSize: number = 50;
  59.   build() {
  60.     Column({ space: 20 }) {
  61.       Row({ space: 10 }) {
  62.         Image(this.data.avatar)
  63.           .size({ width: this.avatarSize, height: this.avatarSize })
  64.           .borderRadius(this.avatarSize / 2)
  65.           .clip(true)
  66.         Text(this.data.name)
  67.       }
  68.       .justifyContent(FlexAlign.Start)
  69.       Text(this.data.message)
  70.       Row({ space: 15 }) {
  71.         ForEach(this.data.images, (imageResource: Resource, index: number) => {
  72.           Image(imageResource)
  73.             .size({ width: this.expandImageSize, height: this.expandImageSize })
  74.         }, (imageResource: Resource, index: number) => index.toString())
  75.       }
  76.       if (this.isExpand) {
  77.         Column() {
  78.           Text('评论区')
  79.             // 对评论区文本添加出现消失转场效果
  80.             .transition( TransitionEffect.OPACITY
  81.               .animation({ duration: 350, curve: Curve.Friction }))
  82.             .padding({ top: 10 })
  83.         }
  84.         .transition(TransitionEffect.asymmetric(
  85.           TransitionEffect.opacity(0.99)
  86.             .animation({ duration: 350, curve: Curve.Friction }),
  87.           TransitionEffect.OPACITY.animation({ duration: 0 })
  88.         ))
  89.         .size({ width: '100%'})
  90.       }
  91.     }
  92.     .backgroundColor(Color.White)
  93.     .size({ width: '100%', height: this.itemHeight })
  94.     .alignItems(HorizontalAlign.Start)
  95.     .padding({ left: 10, top: 10 })
  96.     .onClick(() => {
  97.       this.selecteIndex = -1;
  98.       this.selecteIndex = this.index;
  99.       this.getUIContext()?.animateTo({
  100.         duration: 350,
  101.         curve: Curve.Friction
  102.       }, () => {
  103.         // 对展开的post做宽高动画,并对头像尺寸和图片尺寸加动画
  104.         this.isExpand = !this.isExpand;
  105.         this.itemHeight = this.isExpand ? 780 : 250;
  106.         this.avatarSize = this.isExpand ? 75: 50;
  107.         this.expandImageSize = (this.isExpand && this.data.images.length > 0)
  108.           ? (360 - (this.data.images.length + 1) * 15) / this.data.images.length : 100;
  109.       })
  110.     })
  111.   }
  112. }
  113. ts
复制代码

新建容器并跨容器迁移组件

通过[NodeContainer][自定义占位节点],利用[NodeController]实现组件的跨节点迁移,配合属性动画给组件的迁移过程赋予一镜到底结果。这种一镜到底的实现方式可以结合多种转场方式使用,如导航转场([Navigation])、半模态转场([bindSheet])等。
结合Stack使用

可以利用Stack内后定义组件在最上方的特性控制组件在跨节点迁移后位z序最高,以展开收起卡片的场景为例,实现步骤为:


  • 展开卡片时,获取节点A的位置信息,将其中的组件迁移到与节点A位置一致的节点B处,节点B的层级高于节点A。
  • 对节点B添加属性动画,使之展开并运动到展开后的位置,完成一镜到底的动画结果。
  • 收起卡片时,对节点B添加属性动画,使之收起并运动到收起时的位置,即节点A的位置,实现一镜到底的动画结果。
  • 在动画竣事时利用回调将节点B中的组件迁移回节点A处。
  1. // Index.ets
  2. import { createPostNode, getPostNode, PostNode } from "../PostNode"
  3. import { componentUtils, curves } from '@kit.ArkUI';
  4. @Entry
  5. @Component
  6. struct Index {
  7.   // 新建一镜到底动画类
  8.   @State AnimationProperties: AnimationProperties = new AnimationProperties();
  9.   private listArray: Array<number> = [1, 2, 3, 4, 5, 6, 7, 8 ,9, 10];
  10.   build() {
  11.     // 卡片折叠态,展开态的共同父组件
  12.     Stack() {
  13.       List({space: 20}) {
  14.         ForEach(this.listArray, (item: number) => {
  15.           ListItem() {
  16.             // 卡片折叠态
  17.             PostItem({ index: item, AnimationProperties: this.AnimationProperties })
  18.           }
  19.         })
  20.       }
  21.       .clip(false)
  22.       .alignListItem(ListItemAlign.Center)
  23.       if (this.AnimationProperties.isExpandPageShow) {
  24.         // 卡片展开态
  25.         ExpandPage({ AnimationProperties: this.AnimationProperties })
  26.       }
  27.     }
  28.     .key('rootStack')
  29.     .enabled(this.AnimationProperties.isEnabled)
  30.   }
  31. }
  32. @Component
  33. struct PostItem {
  34.   @Prop index: number
  35.   @Link AnimationProperties: AnimationProperties;
  36.   @State nodeController: PostNode | undefined = undefined;
  37.   // 折叠时详细内容隐藏
  38.   private showDetailContent: boolean = false;
  39.   aboutToAppear(): void {
  40.     this.nodeController = createPostNode(this.getUIContext(), this.index.toString(), this.showDetailContent);
  41.     if (this.nodeController != undefined) {
  42.       // 设置回调,当卡片从展开态回到折叠态时触发
  43.       this.nodeController.setCallback(this.resetNode.bind(this));
  44.     }
  45.   }
  46.   resetNode() {
  47.     this.nodeController = getPostNode(this.index.toString());
  48.   }
  49.   build() {
  50.         Stack() {
  51.           NodeContainer(this.nodeController)
  52.         }
  53.         .width('100%')
  54.         .height(100)
  55.         .key(this.index.toString())
  56.         .onClick( ()=> {
  57.           if (this.nodeController != undefined) {
  58.             // 卡片从折叠态节点下树
  59.             this.nodeController.onRemove();
  60.           }
  61.           // 触发卡片从折叠到展开态的动画
  62.           this.AnimationProperties.expandAnimation(this.index);
  63.         })
  64.   }
  65. }
  66. @Component
  67. struct ExpandPage {
  68.   @Link AnimationProperties: AnimationProperties;
  69.   @State nodeController: PostNode | undefined = undefined;
  70.   // 展开时详细内容出现
  71.   private showDetailContent: boolean = true;
  72.   aboutToAppear(): void {
  73.     // 获取对应序号的卡片组件
  74.     this.nodeController = getPostNode(this.AnimationProperties.curIndex.toString())
  75.     // 更新为详细内容出现
  76.     this.nodeController?.update(this.AnimationProperties.curIndex.toString(), this.showDetailContent)
  77.   }
  78.   build() {
  79.     Stack() {
  80.       NodeContainer(this.nodeController)
  81.     }
  82.     .width('100%')
  83.     .height(this.AnimationProperties.changedHeight ? '100%' : 100)
  84.     .translate({ x: this.AnimationProperties.translateX, y: this.AnimationProperties.translateY })
  85.     .position({ x: this.AnimationProperties.positionX, y: this.AnimationProperties.positionY })
  86.     .onClick(() => {
  87.       this.getUIContext()?.animateTo({ curve: curves.springMotion(0.6, 0.9),
  88.         onFinish: () => {
  89.           if (this.nodeController != undefined) {
  90.             // 执行回调,折叠态节点获取卡片组件
  91.             this.nodeController.callCallback();
  92.             // 当前展开态节点的卡片组件下树
  93.             this.nodeController.onRemove();
  94.           }
  95.           // 卡片展开态节点下树
  96.           this.AnimationProperties.isExpandPageShow = false;
  97.           this.AnimationProperties.isEnabled = true;
  98.         }
  99.       }, () => {
  100.         // 卡片从展开态回到折叠态
  101.         this.AnimationProperties.isEnabled = false;
  102.         this.AnimationProperties.translateX = 0;
  103.         this.AnimationProperties.translateY = 0;
  104.         this.AnimationProperties.changedHeight = false;
  105.         // 更新为详细内容消失
  106.         this.nodeController?.update(this.AnimationProperties.curIndex.toString(), false);
  107.       })
  108.     })
  109.   }
  110. }
  111. class RectInfo {
  112.   left: number = 0;
  113.   top: number = 0;
  114.   right: number = 0;
  115.   bottom: number = 0;
  116.   width: number = 0;
  117.   height: number = 0;
  118. }
  119. // 封装的一镜到底动画类
  120. @Observed
  121. class AnimationProperties {
  122.   public isExpandPageShow: boolean = false;
  123.   // 控制组件是否响应点击事件
  124.   public isEnabled: boolean = true;
  125.   // 展开卡片的序号
  126.   public curIndex: number = -1;
  127.   public translateX: number = 0;
  128.   public translateY: number = 0;
  129.   public positionX: number = 0;
  130.   public positionY: number = 0;
  131.   public changedHeight: boolean = false;
  132.   private calculatedTranslateX: number = 0;
  133.   private calculatedTranslateY: number = 0;
  134.   // 设置卡片展开后相对父组件的位置
  135.   private expandTranslateX: number = 0;
  136.   private expandTranslateY: number = 0;
  137.   public expandAnimation(index: number): void {
  138.     // 记录展开态卡片的序号
  139.     if (index != undefined) {
  140.       this.curIndex = index;
  141.     }
  142.     // 计算折叠态卡片相对父组件的位置
  143.     this.calculateData(index.toString());
  144.     // 展开态卡片上树
  145.     this.isExpandPageShow = true;
  146.     // 卡片展开的属性动画
  147.     animateTo({ curve: curves.springMotion(0.6, 0.9)
  148.     }, () => {
  149.       this.translateX = this.calculatedTranslateX;
  150.       this.translateY = this.calculatedTranslateY;
  151.       this.changedHeight = true;
  152.     })
  153.   }
  154.   // 获取需要跨节点迁移的组件的位置,及迁移前后节点的公共父节点的位置,用以计算做动画组件的动画参数
  155.   public calculateData(key: string): void {
  156.     let clickedImageInfo = this.getRectInfoById(key);
  157.     let rootStackInfo = this.getRectInfoById('rootStack');
  158.     this.positionX = px2vp(clickedImageInfo.left - rootStackInfo.left);
  159.     this.positionY = px2vp(clickedImageInfo.top - rootStackInfo.top);
  160.     this.calculatedTranslateX = px2vp(rootStackInfo.left - clickedImageInfo.left) + this.expandTranslateX;
  161.     this.calculatedTranslateY = px2vp(rootStackInfo.top - clickedImageInfo.top) + this.expandTranslateY;
  162.   }
  163.   // 根据组件的id获取组件的位置信息
  164.   private getRectInfoById(id: string): RectInfo {
  165.     let componentInfo: componentUtils.ComponentInfo = componentUtils.getRectangleById(id);
  166.     if (!componentInfo) {
  167.       throw Error('object is empty');
  168.     }
  169.     let rstRect: RectInfo = new RectInfo();
  170.     const widthScaleGap = componentInfo.size.width * (1 - componentInfo.scale.x) / 2;
  171.     const heightScaleGap = componentInfo.size.height * (1 - componentInfo.scale.y) / 2;
  172.     rstRect.left = componentInfo.translate.x + componentInfo.windowOffset.x + widthScaleGap;
  173.     rstRect.top = componentInfo.translate.y + componentInfo.windowOffset.y + heightScaleGap;
  174.     rstRect.right =
  175.       componentInfo.translate.x + componentInfo.windowOffset.x + componentInfo.size.width - widthScaleGap;
  176.     rstRect.bottom =
  177.       componentInfo.translate.y + componentInfo.windowOffset.y + componentInfo.size.height - heightScaleGap;
  178.     rstRect.width = rstRect.right - rstRect.left;
  179.     rstRect.height = rstRect.bottom - rstRect.top;
  180.     return {
  181.       left: rstRect.left,
  182.       right: rstRect.right,
  183.       top: rstRect.top,
  184.       bottom: rstRect.bottom,
  185.       width: rstRect.width,
  186.       height: rstRect.height
  187.     }
  188.   }
  189. }
  190. ts
复制代码
  1. // PostNode.ets
  2. // 跨容器迁移能力
  3. import { UIContext } from '@ohos.arkui.UIContext';
  4. import { NodeController, BuilderNode, FrameNode } from '@ohos.arkui.node';
  5. import { curves } from '@kit.ArkUI';
  6. class Data {
  7.   item: string | null = null
  8.   isExpand: Boolean | false = false
  9. }
  10. @Builder
  11. function PostBuilder(data: Data) {
  12.   // 跨容器迁移组件置于@Builder内
  13.   Column() {
  14.       Row() {
  15.         Row()
  16.           .backgroundColor(Color.Pink)
  17.           .borderRadius(20)
  18.           .width(80)
  19.           .height(80)
  20.         Column() {
  21.           Text('点击展开 Item ' + data.item)
  22.             .fontSize(20)
  23.           Text('共享元素转场')
  24.             .fontSize(12)
  25.             .fontColor(0x909399)
  26.         }
  27.         .alignItems(HorizontalAlign.Start)
  28.         .justifyContent(FlexAlign.SpaceAround)
  29.         .margin({ left: 10 })
  30.         .height(80)
  31.       }
  32.       .width('90%')
  33.       .height(100)
  34.       // 展开后显示细节内容
  35.       if (data.isExpand) {
  36.         Row() {
  37.           Text('展开态')
  38.             .fontSize(28)
  39.             .fontColor(0x909399)
  40.             .textAlign(TextAlign.Center)
  41.             .transition(TransitionEffect.OPACITY.animation({ curve: curves.springMotion(0.6, 0.9) }))
  42.         }
  43.         .width('90%')
  44.         .justifyContent(FlexAlign.Center)
  45.       }
  46.     }
  47.     .width('90%')
  48.     .height('100%')
  49.     .alignItems(HorizontalAlign.Center)
  50.     .borderRadius(10)
  51.     .margin({ top: 15 })
  52.     .backgroundColor(Color.White)
  53.     .shadow({
  54.       radius: 20,
  55.       color: 0x909399,
  56.       offsetX: 20,
  57.       offsetY: 10
  58.     })
  59. }
  60. class __InternalValue__{
  61.   flag:boolean =false;
  62. };
  63. export class PostNode extends NodeController {
  64.   private node: BuilderNode<Data[]> | null = null;
  65.   private isRemove: __InternalValue__ = new __InternalValue__();
  66.   private callback: Function | undefined = undefined
  67.   private data: Data | null = null
  68.   makeNode(uiContext: UIContext): FrameNode | null {
  69.     if(this.isRemove.flag == true){
  70.       return null;
  71.     }
  72.     if (this.node != null) {
  73.       return this.node.getFrameNode();
  74.     }
  75.     return null;
  76.   }
  77.   init(uiContext: UIContext, id: string, isExpand: boolean) {
  78.     if (this.node != null) {
  79.       return;
  80.     }
  81.     // 创建节点,需要uiContext
  82.     this.node = new BuilderNode(uiContext)
  83.     // 创建离线组件
  84.     this.data = { item: id, isExpand: isExpand }
  85.     this.node.build(wrapBuilder<Data[]>(PostBuilder), this.data)
  86.   }
  87.   update(id: string, isExpand: boolean) {
  88.     if (this.node !== null) {
  89.       // 调用update进行更新。
  90.       this.data = { item: id, isExpand: isExpand }
  91.       this.node.update(this.data);
  92.     }
  93.   }
  94.   setCallback(callback: Function | undefined) {
  95.     this.callback = callback
  96.   }
  97.   callCallback() {
  98.     if (this.callback != undefined) {
  99.       this.callback();
  100.     }
  101.   }
  102.   onRemove(){
  103.     this.isRemove.flag = true;
  104.     // 组件迁移出节点时触发重建
  105.     this.rebuild();
  106.     this.isRemove.flag = false;
  107.   }
  108. }
  109. let gNodeMap: Map<string, PostNode | undefined> = new Map();
  110. export const createPostNode =
  111.   (uiContext: UIContext, id: string, isExpand: boolean): PostNode | undefined => {
  112.     let node = new PostNode();
  113.     node.init(uiContext, id, isExpand);
  114.     gNodeMap.set(id, node);
  115.     return node;
  116.   }
  117. export const getPostNode = (id: string): PostNode | undefined => {
  118.   if (!gNodeMap.has(id)) {
  119.     return undefined
  120.   }
  121.   return gNodeMap.get(id);
  122. }
  123. export const deleteNode = (id: string) => {
  124.   gNodeMap.delete(id)
  125. }
  126. ts
复制代码

结合Navigation使用

可以利用[Navigation]的自定义导航转场动画能力([customNavContentTransition],可参考Navigation[示例3])实现一镜到底动效。共享元素转场期间,组件由消失页面迁移至出现页面。
以展开收起缩略图的场景为例,实现步骤为:


  • 通过customNavContentTransition配置PageOne与PageTwo的自定义导航转场动画。
  • 自定义的共享元素转场结果由属性动画实现,详细实现方式为抓取页面内组件相对窗口的位置信息从而正确匹配组件在PageOne与PageTwo的位置、缩放等,即动画开始和竣事的属性信息。
  • 点击缩略图后共享元素组件从PageOne被迁移至PageTwo,随后触发由PageOne至PageTwo的自定义转场动画,即PageTwo的共享元素组件从原来的缩略图状态做动画到全屏状态。
  • 由全屏状态返回到缩略图时,触发由PageTwo至PageOne的自定义转场动画,即PageTwo的共享元素组件从全屏状态做动画到原PageOne的缩略图状态,转场竣事后共享元素组件从PageTwo被迁移回PageOne。
  1. ├──entry/src/main/ets                 // 代码区
  2. │  ├──CustomTransition
  3. │  │  ├──AnimationProperties.ets      // 一镜到底转场动画封装
  4. │  │  └──CustomNavigationUtils.ets    // Navigation自定义转场动画配置
  5. │  ├──entryability
  6. │  │  └──EntryAbility.ets             // 程序入口类
  7. │  ├──NodeContainer
  8. │  │  └──CustomComponent.ets          // 自定义占位节点
  9. │  ├──pages
  10. │  │  ├──Index.ets                    // 导航页面
  11. │  │  ├──PageOne.ets                  // 缩略图页面
  12. │  │  └──PageTwo.ets                  // 全屏展开页面
  13. │  └──utils
  14. │     ├──ComponentAttrUtils.ets       // 组件位置获取
  15. │     └──WindowUtils.ets              // 窗口信息
  16. └──entry/src/main/resources           // 资源文件
复制代码
  1. // Index.ets
  2. import { AnimateCallback, CustomTransition } from '../CustomTransition/CustomNavigationUtils';
  3. const TAG: string = 'Index';
  4. @Entry
  5. @Component
  6. struct Index {
  7.   private pageInfos: NavPathStack = new NavPathStack();
  8.   // 允许进行自定义转场的页面名称
  9.   private allowedCustomTransitionFromPageName: string[] = ['PageOne'];
  10.   private allowedCustomTransitionToPageName: string[] = ['PageTwo'];
  11.   aboutToAppear(): void {
  12.     this.pageInfos.pushPath({ name: 'PageOne' });
  13.   }
  14.   private isCustomTransitionEnabled(fromName: string, toName: string): boolean {
  15.     // 点击和返回均需要进行自定义转场,因此需要分别判断
  16.     if ((this.allowedCustomTransitionFromPageName.includes(fromName)
  17.       && this.allowedCustomTransitionToPageName.includes(toName))
  18.       || (this.allowedCustomTransitionFromPageName.includes(toName)
  19.         && this.allowedCustomTransitionToPageName.includes(fromName))) {
  20.       return true;
  21.     }
  22.     return false;
  23.   }
  24.   build() {
  25.     Navigation(this.pageInfos)
  26.       .hideNavBar(true)
  27.       .customNavContentTransition((from: NavContentInfo, to: NavContentInfo, operation: NavigationOperation) => {
  28.         if ((!from || !to) || (!from.name || !to.name)) {
  29.           return undefined;
  30.         }
  31.         // 通过from和to的name对自定义转场路由进行管控
  32.         if (!this.isCustomTransitionEnabled(from.name, to.name)) {
  33.           return undefined;
  34.         }
  35.         // 需要对转场页面是否注册了animation进行判断,来决定是否进行自定义转场
  36.         let fromParam: AnimateCallback = CustomTransition.getInstance().getAnimateParam(from.index);
  37.         let toParam: AnimateCallback = CustomTransition.getInstance().getAnimateParam(to.index);
  38.         if (!fromParam.animation || !toParam.animation) {
  39.           return undefined;
  40.         }
  41.         // 一切判断完成后,构造customAnimation给系统侧调用,执行自定义转场动画
  42.         let customAnimation: NavigationAnimatedTransition = {
  43.           onTransitionEnd: (isSuccess: boolean) => {
  44.             console.log(TAG, `current transition result is ${isSuccess}`);
  45.           },
  46.           timeout: 2000,
  47.           transition: (transitionProxy: NavigationTransitionProxy) => {
  48.             console.log(TAG, 'trigger transition callback');
  49.             if (fromParam.animation) {
  50.               fromParam.animation(operation == NavigationOperation.PUSH, true, transitionProxy);
  51.             }
  52.             if (toParam.animation) {
  53.               toParam.animation(operation == NavigationOperation.PUSH, false, transitionProxy);
  54.             }
  55.           }
  56.         };
  57.         return customAnimation;
  58.       })
  59.   }
  60. }
  61. ts
复制代码
  1. // PageOne.ets
  2. import { CustomTransition } from '../CustomTransition/CustomNavigationUtils';
  3. import { MyNodeController, createMyNode, getMyNode } from '../NodeContainer/CustomComponent';
  4. import { ComponentAttrUtils, RectInfoInPx } from '../utils/ComponentAttrUtils';
  5. import { WindowUtils } from '../utils/WindowUtils';
  6. @Builder
  7. export function PageOneBuilder() {
  8.   PageOne();
  9. }
  10. @Component
  11. export struct PageOne {
  12.   private pageInfos: NavPathStack = new NavPathStack();
  13.   private pageId: number = -1;
  14.   @State myNodeController: MyNodeController | undefined = new MyNodeController(false);
  15.   aboutToAppear(): void {
  16.     let node = getMyNode();
  17.     if (node == undefined) {
  18.       // 新建自定义节点
  19.       createMyNode(this.getUIContext());
  20.     }
  21.     this.myNodeController = getMyNode();
  22.   }
  23.   private doFinishTransition(): void {
  24.     // PageTwo结束转场时将节点从PageTwo迁移回PageOne
  25.     this.myNodeController = getMyNode();
  26.   }
  27.   private registerCustomTransition(): void {
  28.     // 注册自定义动画协议
  29.     CustomTransition.getInstance().registerNavParam(this.pageId,
  30.       (isPush: boolean, isExit: boolean, transitionProxy: NavigationTransitionProxy) => {}, 500);
  31.   }
  32.   private onCardClicked(): void {
  33.     let cardItemInfo: RectInfoInPx =
  34.       ComponentAttrUtils.getRectInfoById(WindowUtils.window.getUIContext(), 'card');
  35.     let param: Record<string, Object> = {};
  36.     param['cardItemInfo'] = cardItemInfo;
  37.     param['doDefaultTransition'] = (myController: MyNodeController) => {
  38.       this.doFinishTransition()
  39.     };
  40.     this.pageInfos.pushPath({ name: 'PageTwo', param: param });
  41.     // 自定义节点从PageOne下树
  42.     if (this.myNodeController != undefined) {
  43.       (this.myNodeController as MyNodeController).onRemove();
  44.     }
  45.   }
  46.   build() {
  47.     NavDestination() {
  48.       Stack() {
  49.         Column({ space: 20 }) {
  50.           Row({ space: 10 }) {
  51.             Image($r("app.media.avatar"))
  52.               .size({ width: 50, height: 50 })
  53.               .borderRadius(25)
  54.               .clip(true)
  55.             Text('Alice')
  56.           }
  57.           .justifyContent(FlexAlign.Start)
  58.           Text('你好世界')
  59.           NodeContainer(this.myNodeController)
  60.             .size({ width: 320, height: 250 })
  61.             .onClick(() => {
  62.               this.onCardClicked()
  63.             })
  64.         }
  65.         .alignItems(HorizontalAlign.Start)
  66.         .margin(30)
  67.       }
  68.     }
  69.     .onReady((context: NavDestinationContext) => {
  70.       this.pageInfos = context.pathStack;
  71.       this.pageId = this.pageInfos.getAllPathName().length - 1;
  72.       this.registerCustomTransition();
  73.     })
  74.     .onDisAppear(() => {
  75.       CustomTransition.getInstance().unRegisterNavParam(this.pageId);
  76.       // 自定义节点从PageOne下树
  77.       if (this.myNodeController != undefined) {
  78.         (this.myNodeController as MyNodeController).onRemove();
  79.       }
  80.     })
  81.   }
  82. }
  83. ts
复制代码
  1. // PageTwo.ets
  2. import { CustomTransition } from '../CustomTransition/CustomNavigationUtils';
  3. import { AnimationProperties } from '../CustomTransition/AnimationProperties';
  4. import { RectInfoInPx } from '../utils/ComponentAttrUtils';
  5. import { getMyNode, MyNodeController } from '../NodeContainer/CustomComponent';
  6. @Builder
  7. export function PageTwoBuilder() {
  8.   PageTwo();
  9. }
  10. @Component
  11. export struct PageTwo {
  12.   @State pageInfos: NavPathStack = new NavPathStack();
  13.   @State AnimationProperties: AnimationProperties = new AnimationProperties();
  14.   @State myNodeController: MyNodeController | undefined = new MyNodeController(false);
  15.   private pageId: number = -1;
  16.   private shouldDoDefaultTransition: boolean = false;
  17.   private prePageDoFinishTransition: () => void = () => {};
  18.   private cardItemInfo: RectInfoInPx = new RectInfoInPx();
  19.   @StorageProp('windowSizeChanged') @Watch('unRegisterNavParam') windowSizeChangedTime: number = 0;
  20.   @StorageProp('onConfigurationUpdate') @Watch('unRegisterNavParam') onConfigurationUpdateTime: number = 0;
  21.   aboutToAppear(): void {
  22.     // 迁移自定义节点至当前页面
  23.     this.myNodeController = getMyNode();
  24.   }
  25.   private unRegisterNavParam(): void {
  26.     this.shouldDoDefaultTransition = true;
  27.   }
  28.   private onBackPressed(): boolean {
  29.     if (this.shouldDoDefaultTransition) {
  30.       CustomTransition.getInstance().unRegisterNavParam(this.pageId);
  31.       this.pageInfos.pop();
  32.       this.prePageDoFinishTransition();
  33.       this.shouldDoDefaultTransition = false;
  34.       return true;
  35.     }
  36.     this.pageInfos.pop();
  37.     return true;
  38.   }
  39.   build() {
  40.     NavDestination() {
  41.       // Stack需要设置alignContent为TopStart,否则在高度变化过程中,截图和内容都会随高度重新布局位置
  42.       Stack({ alignContent: Alignment.TopStart }) {
  43.         Stack({ alignContent: Alignment.TopStart }) {
  44.           Column({space: 20}) {
  45.             NodeContainer(this.myNodeController)
  46.             if (this.AnimationProperties.showDetailContent)
  47.               Text('展开态内容')
  48.                 .fontSize(20)
  49.                 .transition(TransitionEffect.OPACITY)
  50.                 .margin(30)
  51.           }
  52.           .alignItems(HorizontalAlign.Start)
  53.         }
  54.         .position({ y: this.AnimationProperties.positionValue })
  55.       }
  56.       .scale({ x: this.AnimationProperties.scaleValue, y: this.AnimationProperties.scaleValue })
  57.       .translate({ x: this.AnimationProperties.translateX, y: this.AnimationProperties.translateY })
  58.       .width(this.AnimationProperties.clipWidth)
  59.       .height(this.AnimationProperties.clipHeight)
  60.       .borderRadius(this.AnimationProperties.radius)
  61.       // expandSafeArea使得Stack做沉浸式效果,向上扩到状态栏,向下扩到导航条
  62.       .expandSafeArea([SafeAreaType.SYSTEM])
  63.       // 对高度进行裁切
  64.       .clip(true)
  65.     }
  66.     .backgroundColor(this.AnimationProperties.navDestinationBgColor)
  67.     .hideTitleBar(true)
  68.     .onReady((context: NavDestinationContext) => {
  69.       this.pageInfos = context.pathStack;
  70.       this.pageId = this.pageInfos.getAllPathName().length - 1;
  71.       let param = context.pathInfo?.param as Record<string, Object>;
  72.       this.prePageDoFinishTransition = param['doDefaultTransition'] as () => void;
  73.       this.cardItemInfo = param['cardItemInfo'] as RectInfoInPx;
  74.       CustomTransition.getInstance().registerNavParam(this.pageId,
  75.         (isPush: boolean, isExit: boolean, transitionProxy: NavigationTransitionProxy) => {
  76.           this.AnimationProperties.doAnimation(
  77.             this.cardItemInfo, isPush, isExit, transitionProxy, 0,
  78.             this.prePageDoFinishTransition, this.myNodeController);
  79.         }, 500);
  80.     })
  81.     .onBackPressed(() => {
  82.       return this.onBackPressed();
  83.     })
  84.     .onDisAppear(() => {
  85.       CustomTransition.getInstance().unRegisterNavParam(this.pageId);
  86.     })
  87.   }
  88. }
  89. ts
复制代码
  1. // CustomNavigationUtils.ets
  2. // 配置Navigation自定义转场动画
  3. export interface AnimateCallback {
  4.   animation: ((isPush: boolean, isExit: boolean, transitionProxy: NavigationTransitionProxy) => void | undefined)
  5.     | undefined;
  6.   timeout: (number | undefined) | undefined;
  7. }
  8. const customTransitionMap: Map<number, AnimateCallback> = new Map();
  9. export class CustomTransition {
  10.   private constructor() {};
  11.   static delegate = new CustomTransition();
  12.   static getInstance() {
  13.     return CustomTransition.delegate;
  14.   }
  15.   // 注册页面的动画回调,name是注册页面的动画的回调
  16.   // animationCallback是需要执行的动画内容,timeout是转场结束的超时时间
  17.   registerNavParam(
  18.     name: number,
  19.     animationCallback: (operation: boolean, isExit: boolean, transitionProxy: NavigationTransitionProxy) => void,
  20.     timeout: number): void {
  21.     if (customTransitionMap.has(name)) {
  22.       let param = customTransitionMap.get(name);
  23.       if (param != undefined) {
  24.         param.animation = animationCallback;
  25.         param.timeout = timeout;
  26.         return;
  27.       }
  28.     }
  29.     let params: AnimateCallback = { timeout: timeout, animation: animationCallback };
  30.     customTransitionMap.set(name, params);
  31.   }
  32.   unRegisterNavParam(name: number): void {
  33.     customTransitionMap.delete(name);
  34.   }
  35.   getAnimateParam(name: number): AnimateCallback {
  36.     let result: AnimateCallback = {
  37.       animation: customTransitionMap.get(name)?.animation,
  38.       timeout: customTransitionMap.get(name)?.timeout,
  39.     };
  40.     return result;
  41.   }
  42. }
  43. ts
复制代码
  1. // 工程配置文件module.json5中配置 {"routerMap": "$profile:route_map"}
  2. // route_map.json
  3. {
  4.   "routerMap": [
  5.     {
  6.       "name": "PageOne",
  7.       "pageSourceFile": "src/main/ets/pages/PageOne.ets",
  8.       "buildFunction": "PageOneBuilder"
  9.     },
  10.     {
  11.       "name": "PageTwo",
  12.       "pageSourceFile": "src/main/ets/pages/PageTwo.ets",
  13.       "buildFunction": "PageTwoBuilder"
  14.     }
  15.   ]
  16. }
  17. ts
复制代码
  1. // AnimationProperties.ets
  2. // 一镜到底转场动画封装
  3. import { curves } from '@kit.ArkUI';
  4. import { RectInfoInPx } from '../utils/ComponentAttrUtils';
  5. import { WindowUtils } from '../utils/WindowUtils';
  6. import { MyNodeController } from '../NodeContainer/CustomComponent';
  7. const TAG: string = 'AnimationProperties';
  8. const DEVICE_BORDER_RADIUS: number = 34;
  9. // 将自定义一镜到底转场动画进行封装,其他界面也需要做自定义一镜到底转场的话,可以直接复用,减少工作量
  10. @Observed
  11. export class AnimationProperties {
  12.   public navDestinationBgColor: ResourceColor = Color.Transparent;
  13.   public translateX: number = 0;
  14.   public translateY: number = 0;
  15.   public scaleValue: number = 1;
  16.   public clipWidth: Dimension = 0;
  17.   public clipHeight: Dimension = 0;
  18.   public radius: number = 0;
  19.   public positionValue: number = 0;
  20.   public showDetailContent: boolean = false;
  21.   public doAnimation(cardItemInfo_px: RectInfoInPx, isPush: boolean, isExit: boolean,
  22.     transitionProxy: NavigationTransitionProxy, extraTranslateValue: number, prePageOnFinish: (index: MyNodeController) => void, myNodeController: MyNodeController|undefined): void {
  23.     // 首先计算卡片的宽高与窗口宽高的比例
  24.     let widthScaleRatio = cardItemInfo_px.width / WindowUtils.windowWidth_px;
  25.     let heightScaleRatio = cardItemInfo_px.height / WindowUtils.windowHeight_px;
  26.     let isUseWidthScale = widthScaleRatio > heightScaleRatio;
  27.     let initScale: number = isUseWidthScale ? widthScaleRatio : heightScaleRatio;
  28.     let initTranslateX: number = 0;
  29.     let initTranslateY: number = 0;
  30.     let initClipWidth: Dimension = 0;
  31.     let initClipHeight: Dimension = 0;
  32.     // 使得PageTwo卡片向上扩到状态栏
  33.     let initPositionValue: number = -px2vp(WindowUtils.topAvoidAreaHeight_px + extraTranslateValue);;
  34.     if (isUseWidthScale) {
  35.       initTranslateX = px2vp(cardItemInfo_px.left - (WindowUtils.windowWidth_px - cardItemInfo_px.width) / 2);
  36.       initClipWidth = '100%';
  37.       initClipHeight = px2vp((cardItemInfo_px.height) / initScale);
  38.       initTranslateY = px2vp(cardItemInfo_px.top - ((vp2px(initClipHeight) - vp2px(initClipHeight) * initScale) / 2));
  39.     } else {
  40.       initTranslateY = px2vp(cardItemInfo_px.top - (WindowUtils.windowHeight_px - cardItemInfo_px.height) / 2);
  41.       initClipHeight = '100%';
  42.       initClipWidth = px2vp((cardItemInfo_px.width) / initScale);
  43.       initTranslateX = px2vp(cardItemInfo_px.left - (WindowUtils.windowWidth_px / 2 - cardItemInfo_px.width / 2));
  44.     }
  45.     // 转场动画开始前通过计算scale、translate、position和clip height & width,确定节点迁移前后位置一致
  46.     console.log(TAG, 'initScale: ' + initScale + ' initTranslateX ' + initTranslateX +
  47.       ' initTranslateY ' + initTranslateY + ' initClipWidth ' + initClipWidth +
  48.       ' initClipHeight ' + initClipHeight + ' initPositionValue ' + initPositionValue);
  49.     // 转场至新页面
  50.     if (isPush && !isExit) {
  51.       this.scaleValue = initScale;
  52.       this.translateX = initTranslateX;
  53.       this.clipWidth = initClipWidth;
  54.       this.clipHeight = initClipHeight;
  55.       this.translateY = initTranslateY;
  56.       this.positionValue = initPositionValue;
  57.       animateTo({
  58.         curve: curves.interpolatingSpring(0, 1, 328, 36),
  59.         onFinish: () => {
  60.           if (transitionProxy) {
  61.             transitionProxy.finishTransition();
  62.           }
  63.         }
  64.       }, () => {
  65.         this.scaleValue = 1.0;
  66.         this.translateX = 0;
  67.         this.translateY = 0;
  68.         this.clipWidth = '100%';
  69.         this.clipHeight = '100%';
  70.         // 页面圆角与系统圆角一致
  71.         this.radius = DEVICE_BORDER_RADIUS;
  72.         this.showDetailContent = true;
  73.       })
  74.       animateTo({
  75.         duration: 100,
  76.         curve: Curve.Sharp,
  77.       }, () => {
  78.         // 页面由透明逐渐变为设置背景色
  79.         this.navDestinationBgColor = '#00ffffff';
  80.       })
  81.       // 返回旧页面
  82.     } else if (!isPush && isExit) {
  83.       animateTo({
  84.         duration: 350,
  85.         curve: Curve.EaseInOut,
  86.         onFinish: () => {
  87.           if (transitionProxy) {
  88.             transitionProxy.finishTransition();
  89.           }
  90.           prePageOnFinish(myNodeController);
  91.           // 自定义节点从PageTwo下树
  92.           if (myNodeController != undefined) {
  93.             (myNodeController as MyNodeController).onRemove();
  94.           }
  95.         }
  96.       }, () => {
  97.         this.scaleValue = initScale;
  98.         this.translateX = initTranslateX;
  99.         this.translateY = initTranslateY;
  100.         this.radius = 0;
  101.         this.clipWidth = initClipWidth;
  102.         this.clipHeight = initClipHeight;
  103.         this.showDetailContent = false;
  104.       })
  105.       animateTo({
  106.         duration: 200,
  107.         delay: 150,
  108.         curve: Curve.Friction,
  109.       }, () => {
  110.         this.navDestinationBgColor = Color.Transparent;
  111.       })
  112.     }
  113.   }
  114. }
  115. ts
复制代码
  1. // ComponentAttrUtils.ets
  2. // 获取组件相对窗口的位置
  3. import { componentUtils, UIContext } from '@kit.ArkUI';
  4. import { JSON } from '@kit.ArkTS';
  5. export class ComponentAttrUtils {
  6.   // 根据组件的id获取组件的位置信息
  7.   public static getRectInfoById(context: UIContext, id: string): RectInfoInPx {
  8.     if (!context || !id) {
  9.       throw Error('object is empty');
  10.     }
  11.     let componentInfo: componentUtils.ComponentInfo = context.getComponentUtils().getRectangleById(id);
  12.     if (!componentInfo) {
  13.       throw Error('object is empty');
  14.     }
  15.     let rstRect: RectInfoInPx = new RectInfoInPx();
  16.     const widthScaleGap = componentInfo.size.width * (1 - componentInfo.scale.x) / 2;
  17.     const heightScaleGap = componentInfo.size.height * (1 - componentInfo.scale.y) / 2;
  18.     rstRect.left = componentInfo.translate.x + componentInfo.windowOffset.x + widthScaleGap;
  19.     rstRect.top = componentInfo.translate.y + componentInfo.windowOffset.y + heightScaleGap;
  20.     rstRect.right =
  21.       componentInfo.translate.x + componentInfo.windowOffset.x + componentInfo.size.width - widthScaleGap;
  22.     rstRect.bottom =
  23.       componentInfo.translate.y + componentInfo.windowOffset.y + componentInfo.size.height - heightScaleGap;
  24.     rstRect.width = rstRect.right - rstRect.left;
  25.     rstRect.height = rstRect.bottom - rstRect.top;
  26.     return {
  27.       left: rstRect.left,
  28.       right: rstRect.right,
  29.       top: rstRect.top,
  30.       bottom: rstRect.bottom,
  31.       width: rstRect.width,
  32.       height: rstRect.height
  33.     }
  34.   }
  35. }
  36. export class RectInfoInPx {
  37.   left: number = 0;
  38.   top: number = 0;
  39.   right: number = 0;
  40.   bottom: number = 0;
  41.   width: number = 0;
  42.   height: number = 0;
  43. }
  44. export class RectJson {
  45.   $rect: Array<number> = [];
  46. }
  47. ts
复制代码
  1. // WindowUtils.ets
  2. // 窗口信息
  3. import { window } from '@kit.ArkUI';
  4. export class WindowUtils {
  5.   public static window: window.Window;
  6.   public static windowWidth_px: number;
  7.   public static windowHeight_px: number;
  8.   public static topAvoidAreaHeight_px: number;
  9.   public static navigationIndicatorHeight_px: number;
  10. }
  11. ts
复制代码
  1. // EntryAbility.ets
  2. // 程序入口处的onWindowStageCreate增加对窗口宽高等的抓取
  3. import { AbilityConstant, UIAbility, Want } from '@kit.AbilityKit';
  4. import { hilog } from '@kit.PerformanceAnalysisKit';
  5. import { display, window } from '@kit.ArkUI';
  6. import { WindowUtils } from '../utils/WindowUtils';
  7. const TAG: string = 'EntryAbility';
  8. export default class EntryAbility extends UIAbility {
  9.   private currentBreakPoint: string = '';
  10.   onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void {
  11.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
  12.   }
  13.   onDestroy(): void {
  14.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');
  15.   }
  16.   onWindowStageCreate(windowStage: window.WindowStage): void {
  17.     // Main window is created, set main page for this ability
  18.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
  19.     // 获取窗口宽高
  20.     WindowUtils.window = windowStage.getMainWindowSync();
  21.     WindowUtils.windowWidth_px = WindowUtils.window.getWindowProperties().windowRect.width;
  22.     WindowUtils.windowHeight_px = WindowUtils.window.getWindowProperties().windowRect.height;
  23.     this.updateBreakpoint(WindowUtils.windowWidth_px);
  24.     // 获取上方避让区(状态栏等)高度
  25.     let avoidArea = WindowUtils.window.getWindowAvoidArea(window.AvoidAreaType.TYPE_SYSTEM);
  26.     WindowUtils.topAvoidAreaHeight_px = avoidArea.topRect.height;
  27.     // 获取导航条高度
  28.     let navigationArea = WindowUtils.window.getWindowAvoidArea(window.AvoidAreaType.TYPE_NAVIGATION_INDICATOR);
  29.     WindowUtils.navigationIndicatorHeight_px = navigationArea.bottomRect.height;
  30.     console.log(TAG, 'the width is ' + WindowUtils.windowWidth_px + '  ' + WindowUtils.windowHeight_px + '  ' +
  31.     WindowUtils.topAvoidAreaHeight_px + '  ' + WindowUtils.navigationIndicatorHeight_px);
  32.     // 监听窗口尺寸、状态栏高度及导航条高度的变化并更新
  33.     try {
  34.       WindowUtils.window.on('windowSizeChange', (data) => {
  35.         console.log(TAG, 'on windowSizeChange, the width is ' + data.width + ', the height is ' + data.height);
  36.         WindowUtils.windowWidth_px = data.width;
  37.         WindowUtils.windowHeight_px = data.height;
  38.         this.updateBreakpoint(data.width);
  39.         AppStorage.setOrCreate('windowSizeChanged', Date.now())
  40.       })
  41.       WindowUtils.window.on('avoidAreaChange', (data) => {
  42.         if (data.type == window.AvoidAreaType.TYPE_SYSTEM) {
  43.           let topRectHeight = data.area.topRect.height;
  44.           console.log(TAG, 'on avoidAreaChange, the top avoid area height is ' + topRectHeight);
  45.           WindowUtils.topAvoidAreaHeight_px = topRectHeight;
  46.         } else if (data.type == window.AvoidAreaType.TYPE_NAVIGATION_INDICATOR) {
  47.           let bottomRectHeight = data.area.bottomRect.height;
  48.           console.log(TAG, 'on avoidAreaChange, the navigation indicator height is ' + bottomRectHeight);
  49.           WindowUtils.navigationIndicatorHeight_px = bottomRectHeight;
  50.         }
  51.       })
  52.     } catch (exception) {
  53.       console.log('register failed ' + JSON.stringify(exception));
  54.     }
  55.     windowStage.loadContent('pages/Index', (err) => {
  56.       if (err.code) {
  57.         hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
  58.         return;
  59.       }
  60.       hilog.info(0x0000, 'testTag', 'Succeeded in loading the content.');
  61.     });
  62.   }
  63.   updateBreakpoint(width: number) {
  64.     let windowWidthVp = width / (display.getDefaultDisplaySync().densityDPI / 160);
  65.     let newBreakPoint: string = '';
  66.     if (windowWidthVp < 400) {
  67.       newBreakPoint = 'xs';
  68.     } else if (windowWidthVp < 600) {
  69.       newBreakPoint = 'sm';
  70.     } else if (windowWidthVp < 800) {
  71.       newBreakPoint = 'md';
  72.     } else {
  73.       newBreakPoint = 'lg';
  74.     }
  75.     if (this.currentBreakPoint !== newBreakPoint) {
  76.       this.currentBreakPoint = newBreakPoint;
  77.       // 使用状态变量记录当前断点值
  78.       AppStorage.setOrCreate('currentBreakpoint', this.currentBreakPoint);
  79.     }
  80.   }
  81.   onWindowStageDestroy(): void {
  82.     // Main window is destroyed, release UI related resources
  83.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
  84.   }
  85.   onForeground(): void {
  86.     // Ability has brought to foreground
  87.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');
  88.   }
  89.   onBackground(): void {
  90.     // Ability has back to background
  91.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');
  92.   }
  93. }
  94. ts
复制代码
  1. // CustomComponent.ets
  2. // 自定义占位节点,跨容器迁移能力
  3. import { BuilderNode, FrameNode, NodeController } from '@kit.ArkUI';
  4. @Builder
  5. function CardBuilder() {
  6.   Image($r("app.media.card"))
  7.     .width('100%')
  8.     .id('card')
  9. }
  10. export class MyNodeController extends NodeController {
  11.   private CardNode: BuilderNode<[]> | null = null;
  12.   private wrapBuilder: WrappedBuilder<[]> = wrapBuilder(CardBuilder);
  13.   private needCreate: boolean = false;
  14.   private isRemove: boolean = false;
  15.   constructor(create: boolean) {
  16.     super();
  17.     this.needCreate = create;
  18.   }
  19.   makeNode(uiContext: UIContext): FrameNode | null {
  20.     if(this.isRemove == true){
  21.       return null;
  22.     }
  23.     if (this.needCreate && this.CardNode == null) {
  24.       this.CardNode = new BuilderNode(uiContext);
  25.       this.CardNode.build(this.wrapBuilder)
  26.     }
  27.     if (this.CardNode == null) {
  28.       return null;
  29.     }
  30.     return this.CardNode!.getFrameNode()!;
  31.   }
  32.   getNode(): BuilderNode<[]> | null {
  33.     return this.CardNode;
  34.   }
  35.   setNode(node: BuilderNode<[]> | null) {
  36.     this.CardNode = node;
  37.     this.rebuild();
  38.   }
  39.   onRemove() {
  40.     this.isRemove = true;
  41.     this.rebuild();
  42.     this.isRemove = false;
  43.   }
  44.   init(uiContext: UIContext) {
  45.     this.CardNode = new BuilderNode(uiContext);
  46.     this.CardNode.build(this.wrapBuilder)
  47.   }
  48. }
  49. let myNode: MyNodeController | undefined;
  50. export const createMyNode =
  51.   (uiContext: UIContext) => {
  52.     myNode = new MyNodeController(false);
  53.     myNode.init(uiContext);
  54.   }
  55. export const getMyNode = (): MyNodeController | undefined => {
  56.   return myNode;
  57. }
  58. ts
复制代码

结合BindSheet使用

想实现半模态转场([bindSheet])的同时,组件从初始界面做一镜到底动画到半模态页面的结果,可以使用这样的设计思路。将[SheetOptions]中的mode设置为SheetMode.EMBEDDED,该模式下新起的页面可以覆盖在半模态弹窗上,页面返回后该半模态依旧存在,半模态面板内容不丢失。在半模态转场的同时设置一全模态转场([bindContentCover])页面无转场出现,该页面仅有需要做共享元素转场的组件,通过属性动画,展示组件从初始界面至半模态页面的一镜到底动效,并在动画竣事时关闭页面,并将该组件迁移至半模态页面。
以点击图片展开半模态页的场景为例,实现步骤为:


  • 在初始界面挂载半模态转场和全模态转场两个页面,半模态页按需布局,全模态页面仅放置一镜到底动效需要的组件,抓取布局信息,使其初始位置为初始界面图片的位置。点击初始界面图片时,同时触发半模态和全模态页面出现,因设置为SheetMode.EMBEDDED模式,此时全模态页面层级最高。
  • 设置不可见的占位图片置于半模态页上,作为一镜到底动效竣事时图片的制止位置。利用[布局回调]监听该占位图片布局完成的时间,此时实行回调抓取占位图片的位置信息,随后全模态页面上的图片利用属性动画开始举行共享元素转场。
  • 全模态页面的动画竣事时触发竣事回调,关闭全模态页面,将共享元素图片的节点迁移至半模态页面,替换占位图片。
  • 需注意,半模态页面的弹起高度不同,其页面起始位置也有所不同,而全模态则是全屏显示,两者存在一高度差,做一镜到底动画时,需要盘算差值并举行修正,详细可见demo。
  • 还可以配合一镜到底动画,给初始界面图片也增长一个从透明到出现的动画,使得动效更为流通。
  1. ├──entry/src/main/ets                 // 代码区
  2. │  ├──entryability
  3. │  │  └──EntryAbility.ets             // 程序入口类
  4. │  ├──NodeContainer
  5. │  │  └──CustomComponent.ets          // 自定义占位节点
  6. │  ├──pages
  7. │  │  └──Index.ets                    // 进行共享元素转场的主页面
  8. │  └──utils
  9. │     ├──ComponentAttrUtils.ets       // 组件位置获取
  10. │     └──WindowUtils.ets              // 窗口信息
  11. └──entry/src/main/resources           // 资源文件
复制代码
  1. // index.ets
  2. import { MyNodeController, createMyNode, getMyNode } from '../NodeContainer/CustomComponent';
  3. import { ComponentAttrUtils, RectInfoInPx } from '../utils/ComponentAttrUtils';
  4. import { WindowUtils } from '../utils/WindowUtils';
  5. import { inspector } from '@kit.ArkUI'
  6. class AnimationInfo {
  7.   scale: number = 0;
  8.   translateX: number = 0;
  9.   translateY: number = 0;
  10.   clipWidth: Dimension = 0;
  11.   clipHeight: Dimension = 0;
  12. }
  13. @Entry
  14. @Component
  15. struct Index {
  16.   @State isShowSheet: boolean = false;
  17.   @State isShowImage: boolean = false;
  18.   @State isShowOverlay: boolean = false;
  19.   @State isAnimating: boolean = false;
  20.   @State isEnabled: boolean = true;
  21.   @State scaleValue: number = 0;
  22.   @State translateX: number = 0;
  23.   @State translateY: number = 0;
  24.   @State clipWidth: Dimension = 0;
  25.   @State clipHeight: Dimension = 0;
  26.   @State radius: number = 0;
  27.   // 原图的透明度
  28.   @State opacityDegree: number = 1;
  29.   // 抓取照片原位置信息
  30.   private originInfo: AnimationInfo = new AnimationInfo;
  31.   // 抓取照片在半模态页上位置信息
  32.   private targetInfo: AnimationInfo = new AnimationInfo;
  33.   // 半模态高度
  34.   private bindSheetHeight: number = 450;
  35.   // 半模态上图片圆角
  36.   private sheetRadius: number = 20;
  37.   // 设置半模态上图片的布局监听
  38.   listener:inspector.ComponentObserver = this.getUIContext().getUIInspector().createComponentObserver('target');
  39.   aboutToAppear(): void {
  40.     // 设置半模态上图片的布局完成回调
  41.     let onLayoutComplete:()=>void=():void=>{
  42.       // 目标图片布局完成时抓取布局信息
  43.       this.targetInfo = this.calculateData('target');
  44.       // 仅半模态正确布局且此时无动画时触发一镜到底动画
  45.       if (this.targetInfo.scale != 0 && this.targetInfo.clipWidth != 0 && this.targetInfo.clipHeight != 0 && !this.isAnimating) {
  46.         this.isAnimating = true;
  47.         // 用于一镜到底的模态页的属性动画
  48.         this.getUIContext()?.animateTo({
  49.           duration: 1000,
  50.           curve: Curve.Friction,
  51.           onFinish: () => {
  52.             // 模态转场页(overlay)上的自定义节点下树
  53.             this.isShowOverlay = false;
  54.             // 半模态上的自定义节点上树,由此完成节点迁移
  55.             this.isShowImage = true;
  56.           }
  57.         }, () => {
  58.           this.scaleValue = this.targetInfo.scale;
  59.           this.translateX = this.targetInfo.translateX;
  60.           this.clipWidth = this.targetInfo.clipWidth;
  61.           this.clipHeight = this.targetInfo.clipHeight;
  62.           // 修正因半模态高度和缩放导致的高度差
  63.           this.translateY = this.targetInfo.translateY +
  64.             (this.getUIContext().px2vp(WindowUtils.windowHeight_px) - this.bindSheetHeight
  65.               - this.getUIContext().px2vp(WindowUtils.navigationIndicatorHeight_px) - this.getUIContext().px2vp(WindowUtils.topAvoidAreaHeight_px));
  66.           // 修正因缩放导致的圆角差异
  67.           this.radius = this.sheetRadius / this.scaleValue
  68.         })
  69.         // 原图从透明到出现的动画
  70.         this.getUIContext()?.animateTo({
  71.           duration: 2000,
  72.           curve: Curve.Friction,
  73.         }, () => {
  74.           this.opacityDegree = 1;
  75.         })
  76.       }
  77.     }
  78.     // 打开布局监听
  79.     this.listener.on('layout', onLayoutComplete)
  80.   }
  81.   // 获取对应id的组件相对窗口左上角的属性
  82.   calculateData(id: string): AnimationInfo {
  83.     let itemInfo: RectInfoInPx =
  84.       ComponentAttrUtils.getRectInfoById(WindowUtils.window.getUIContext(), id);
  85.     // 首先计算图片的宽高与窗口宽高的比例
  86.     let widthScaleRatio = itemInfo.width / WindowUtils.windowWidth_px;
  87.     let heightScaleRatio = itemInfo.height / WindowUtils.windowHeight_px;
  88.     let isUseWidthScale = widthScaleRatio > heightScaleRatio;
  89.     let itemScale: number = isUseWidthScale ? widthScaleRatio : heightScaleRatio;
  90.     let itemTranslateX: number = 0;
  91.     let itemClipWidth: Dimension = 0;
  92.     let itemClipHeight: Dimension = 0;
  93.     let itemTranslateY: number = 0;
  94.     if (isUseWidthScale) {
  95.       itemTranslateX = this.getUIContext().px2vp(itemInfo.left - (WindowUtils.windowWidth_px - itemInfo.width) / 2);
  96.       itemClipWidth = '100%';
  97.       itemClipHeight = this.getUIContext().px2vp((itemInfo.height) / itemScale);
  98.       itemTranslateY = this.getUIContext().px2vp(itemInfo.top - ((this.getUIContext().vp2px(itemClipHeight) - this.getUIContext().vp2px(itemClipHeight) * itemScale) / 2));
  99.     } else {
  100.       itemTranslateY = this.getUIContext().px2vp(itemInfo.top - (WindowUtils.windowHeight_px - itemInfo.height) / 2);
  101.       itemClipHeight = '100%';
  102.       itemClipWidth = this.getUIContext().px2vp((itemInfo.width) / itemScale);
  103.       itemTranslateX = this.getUIContext().px2vp(itemInfo.left - (WindowUtils.windowWidth_px / 2 - itemInfo.width / 2));
  104.     }
  105.     return {
  106.       scale: itemScale,
  107.       translateX: itemTranslateX ,
  108.       translateY: itemTranslateY,
  109.       clipWidth: itemClipWidth,
  110.       clipHeight: itemClipHeight,
  111.     }
  112.   }
  113.   // 照片页
  114.   build() {
  115.     Column() {
  116.       Text('照片')
  117.         .textAlign(TextAlign.Start)
  118.         .width('100%')
  119.         .fontSize(30)
  120.         .padding(20)
  121.       Image($r("app.media.flower"))
  122.         .opacity(this.opacityDegree)
  123.         .width('90%')
  124.         .id('origin')// 挂载半模态页
  125.         .enabled(this.isEnabled)
  126.         .onClick(() => {
  127.           // 获取原始图像的位置信息,将模态页上图片移动缩放至该位置
  128.           this.originInfo = this.calculateData('origin');
  129.           this.scaleValue = this.originInfo.scale;
  130.           this.translateX = this.originInfo.translateX;
  131.           this.translateY = this.originInfo.translateY;
  132.           this.clipWidth = this.originInfo.clipWidth;
  133.           this.clipHeight = this.originInfo.clipHeight;
  134.           this.radius = 0;
  135.           this.opacityDegree = 0;
  136.           // 启动半模态页和模态页
  137.           this.isShowSheet = true;
  138.           this.isShowOverlay = true;
  139.           // 设置原图为不可交互抗打断
  140.           this.isEnabled = false;
  141.         })
  142.     }
  143.     .width('100%')
  144.     .height('100%')
  145.     .padding({ top: 20 })
  146.     .alignItems(HorizontalAlign.Center)
  147.     .bindSheet(this.isShowSheet, this.mySheet(), {
  148.       // Embedded模式使得其他页面可以高于半模态页
  149.       mode: SheetMode.EMBEDDED,
  150.       height: this.bindSheetHeight,
  151.       onDisappear: () => {
  152.         // 保证半模态消失时状态正确
  153.         this.isShowImage = false;
  154.         this.isShowSheet = false;
  155.         // 设置一镜到底动画又进入可触发状态
  156.         this.isAnimating = false;
  157.         // 原图重新变为可交互状态
  158.         this.isEnabled = true;
  159.       }
  160.     }) // 挂载模态页作为一镜到底动画的实现页
  161.     .bindContentCover(this.isShowOverlay, this.overlayNode(), {
  162.       // 模态页面设置为无转场
  163.       transition: TransitionEffect.IDENTITY,
  164.     })
  165.   }
  166.   // 半模态页面
  167.   @Builder
  168.   mySheet() {
  169.     Column({space: 20}) {
  170.       Text('半模态页面')
  171.         .fontSize(30)
  172.       Row({space: 40}) {
  173.         Column({space: 20}) {
  174.           ForEach([1, 2, 3, 4], () => {
  175.             Stack()
  176.               .backgroundColor(Color.Pink)
  177.               .borderRadius(20)
  178.               .width(60)
  179.               .height(60)
  180.           })
  181.         }
  182.         Column() {
  183.           if (this.isShowImage) {
  184.             // 半模态页面的自定义图片节点
  185.             ImageNode()
  186.           }
  187.           else {
  188.             // 抓取布局和占位用,实际不显示
  189.             Image($r("app.media.flower"))
  190.               .visibility(Visibility.Hidden)
  191.           }
  192.         }
  193.         .height(300)
  194.         .width(200)
  195.         .borderRadius(20)
  196.         .clip(true)
  197.         .id('target')
  198.       }
  199.       .alignItems(VerticalAlign.Top)
  200.     }
  201.     .alignItems(HorizontalAlign.Start)
  202.     .height('100%')
  203.     .width('100%')
  204.     .margin(40)
  205.   }
  206.   @Builder
  207.   overlayNode() {
  208.     // Stack需要设置alignContent为TopStart,否则在高度变化过程中,截图和内容都会随高度重新布局位置
  209.     Stack({ alignContent: Alignment.TopStart }) {
  210.       ImageNode()
  211.     }
  212.     .scale({ x: this.scaleValue, y: this.scaleValue, centerX: undefined, centerY: undefined})
  213.     .translate({ x: this.translateX, y: this.translateY })
  214.     .width(this.clipWidth)
  215.     .height(this.clipHeight)
  216.     .borderRadius(this.radius)
  217.     .clip(true)
  218.   }
  219. }
  220. @Component
  221. struct ImageNode {
  222.   @State myNodeController: MyNodeController | undefined = new MyNodeController(false);
  223.   aboutToAppear(): void {
  224.     // 获取自定义节点
  225.     let node = getMyNode();
  226.     if (node == undefined) {
  227.       // 新建自定义节点
  228.       createMyNode(this.getUIContext());
  229.     }
  230.     this.myNodeController = getMyNode();
  231.   }
  232.   aboutToDisappear(): void {
  233.     if (this.myNodeController != undefined) {
  234.       // 节点下树
  235.       this.myNodeController.onRemove();
  236.     }
  237.   }
  238.   build() {
  239.     NodeContainer(this.myNodeController)
  240.   }
  241. }
  242. ts
复制代码
  1. // CustomComponent.ets
  2. // 自定义占位节点,跨容器迁移能力
  3. import { BuilderNode, FrameNode, NodeController } from '@kit.ArkUI';
  4. @Builder
  5. function CardBuilder() {
  6.   Image($r("app.media.flower"))
  7.     // 避免第一次加载图片时图片闪烁
  8.     .syncLoad(true)
  9. }
  10. export class MyNodeController extends NodeController {
  11.   private CardNode: BuilderNode<[]> | null = null;
  12.   private wrapBuilder: WrappedBuilder<[]> = wrapBuilder(CardBuilder);
  13.   private needCreate: boolean = false;
  14.   private isRemove: boolean = false;
  15.   constructor(create: boolean) {
  16.     super();
  17.     this.needCreate = create;
  18.   }
  19.   makeNode(uiContext: UIContext): FrameNode | null {
  20.     if(this.isRemove == true){
  21.       return null;
  22.     }
  23.     if (this.needCreate && this.CardNode == null) {
  24.       this.CardNode = new BuilderNode(uiContext);
  25.       this.CardNode.build(this.wrapBuilder)
  26.     }
  27.     if (this.CardNode == null) {
  28.       return null;
  29.     }
  30.     return this.CardNode!.getFrameNode()!;
  31.   }
  32.   getNode(): BuilderNode<[]> | null {
  33.     return this.CardNode;
  34.   }
  35.   setNode(node: BuilderNode<[]> | null) {
  36.     this.CardNode = node;
  37.     this.rebuild();
  38.   }
  39.   onRemove() {
  40.     this.isRemove = true;
  41.     this.rebuild();
  42.     this.isRemove = false;
  43.   }
  44.   init(uiContext: UIContext) {
  45.     this.CardNode = new BuilderNode(uiContext);
  46.     this.CardNode.build(this.wrapBuilder)
  47.   }
  48. }
  49. let myNode: MyNodeController | undefined;
  50. export const createMyNode =
  51.   (uiContext: UIContext) => {
  52.     myNode = new MyNodeController(false);
  53.     myNode.init(uiContext);
  54.   }
  55. export const getMyNode = (): MyNodeController | undefined => {
  56.   return myNode;
  57. }
  58. ts
复制代码
  1. // ComponentAttrUtils.ets
  2. // 获取组件相对窗口的位置
  3. import { componentUtils, UIContext } from '@kit.ArkUI';
  4. import { JSON } from '@kit.ArkTS';
  5. export class ComponentAttrUtils {
  6.   // 根据组件的id获取组件的位置信息
  7.   public static getRectInfoById(context: UIContext, id: string): RectInfoInPx {
  8.     if (!context || !id) {
  9.       throw Error('object is empty');
  10.     }
  11.     let componentInfo: componentUtils.ComponentInfo = context.getComponentUtils().getRectangleById(id);
  12.     if (!componentInfo) {
  13.       throw Error('object is empty');
  14.     }
  15.     let rstRect: RectInfoInPx = new RectInfoInPx();
  16.     const widthScaleGap = componentInfo.size.width * (1 - componentInfo.scale.x) / 2;
  17.     const heightScaleGap = componentInfo.size.height * (1 - componentInfo.scale.y) / 2;
  18.     rstRect.left = componentInfo.translate.x + componentInfo.windowOffset.x + widthScaleGap;
  19.     rstRect.top = componentInfo.translate.y + componentInfo.windowOffset.y + heightScaleGap;
  20.     rstRect.right =
  21.       componentInfo.translate.x + componentInfo.windowOffset.x + componentInfo.size.width - widthScaleGap;
  22.     rstRect.bottom =
  23.       componentInfo.translate.y + componentInfo.windowOffset.y + componentInfo.size.height - heightScaleGap;
  24.     rstRect.width = rstRect.right - rstRect.left;
  25.     rstRect.height = rstRect.bottom - rstRect.top;
  26.     return {
  27.       left: rstRect.left,
  28.       right: rstRect.right,
  29.       top: rstRect.top,
  30.       bottom: rstRect.bottom,
  31.       width: rstRect.width,
  32.       height: rstRect.height
  33.     }
  34.   }
  35. }
  36. export class RectInfoInPx {
  37.   left: number = 0;
  38.   top: number = 0;
  39.   right: number = 0;
  40.   bottom: number = 0;
  41.   width: number = 0;
  42.   height: number = 0;
  43. }
  44. export class RectJson {
  45.   $rect: Array<number> = [];
  46. }
  47. ts
复制代码
  1. // WindowUtils.ets
  2. // 窗口信息
  3. import { window } from '@kit.ArkUI';
  4. export class WindowUtils {
  5.   public static window: window.Window;
  6.   public static windowWidth_px: number;
  7.   public static windowHeight_px: number;
  8.   public static topAvoidAreaHeight_px: number;
  9.   public static navigationIndicatorHeight_px: number;
  10. }
  11. ts
复制代码
  1. // EntryAbility.ets
  2. // 程序入口处的onWindowStageCreate增加对窗口宽高等的抓取
  3. import { AbilityConstant, UIAbility, Want } from '@kit.AbilityKit';
  4. import { hilog } from '@kit.PerformanceAnalysisKit';
  5. import { display, window } from '@kit.ArkUI';
  6. import { WindowUtils } from '../utils/WindowUtils';
  7. const TAG: string = 'EntryAbility';
  8. export default class EntryAbility extends UIAbility {
  9.   private currentBreakPoint: string = '';
  10.   onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void {
  11.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
  12.   }
  13.   onDestroy(): void {
  14.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');
  15.   }
  16.   onWindowStageCreate(windowStage: window.WindowStage): void {
  17.     // Main window is created, set main page for this ability
  18.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');
  19.     // 获取窗口宽高
  20.     WindowUtils.window = windowStage.getMainWindowSync();
  21.     WindowUtils.windowWidth_px = WindowUtils.window.getWindowProperties().windowRect.width;
  22.     WindowUtils.windowHeight_px = WindowUtils.window.getWindowProperties().windowRect.height;
  23.     this.updateBreakpoint(WindowUtils.windowWidth_px);
  24.     // 获取上方避让区(状态栏等)高度
  25.     let avoidArea = WindowUtils.window.getWindowAvoidArea(window.AvoidAreaType.TYPE_SYSTEM);
  26.     WindowUtils.topAvoidAreaHeight_px = avoidArea.topRect.height;
  27.     // 获取导航条高度
  28.     let navigationArea = WindowUtils.window.getWindowAvoidArea(window.AvoidAreaType.TYPE_NAVIGATION_INDICATOR);
  29.     WindowUtils.navigationIndicatorHeight_px = navigationArea.bottomRect.height;
  30.     console.log(TAG, 'the width is ' + WindowUtils.windowWidth_px + '  ' + WindowUtils.windowHeight_px + '  ' +
  31.     WindowUtils.topAvoidAreaHeight_px + '  ' + WindowUtils.navigationIndicatorHeight_px);
  32.     // 监听窗口尺寸、状态栏高度及导航条高度的变化并更新
  33.     try {
  34.       WindowUtils.window.on('windowSizeChange', (data) => {
  35.         console.log(TAG, 'on windowSizeChange, the width is ' + data.width + ', the height is ' + data.height);
  36.         WindowUtils.windowWidth_px = data.width;
  37.         WindowUtils.windowHeight_px = data.height;
  38.         this.updateBreakpoint(data.width);
  39.         AppStorage.setOrCreate('windowSizeChanged', Date.now())
  40.       })
  41.       WindowUtils.window.on('avoidAreaChange', (data) => {
  42.         if (data.type == window.AvoidAreaType.TYPE_SYSTEM) {
  43.           let topRectHeight = data.area.topRect.height;
  44.           console.log(TAG, 'on avoidAreaChange, the top avoid area height is ' + topRectHeight);
  45.           WindowUtils.topAvoidAreaHeight_px = topRectHeight;
  46.         } else if (data.type == window.AvoidAreaType.TYPE_NAVIGATION_INDICATOR) {
  47.           let bottomRectHeight = data.area.bottomRect.height;
  48.           console.log(TAG, 'on avoidAreaChange, the navigation indicator height is ' + bottomRectHeight);
  49.           WindowUtils.navigationIndicatorHeight_px = bottomRectHeight;
  50.         }
  51.       })
  52.     } catch (exception) {
  53.       console.log('register failed ' + JSON.stringify(exception));
  54.     }
  55.     windowStage.loadContent('pages/Index', (err) => {
  56.       if (err.code) {
  57.         hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
  58.         return;
  59.       }
  60.       hilog.info(0x0000, 'testTag', 'Succeeded in loading the content.');
  61.     });
  62.   }
  63.   updateBreakpoint(width: number) {
  64.     let windowWidthVp = width / (display.getDefaultDisplaySync().densityDPI / 160);
  65.     let newBreakPoint: string = '';
  66.     if (windowWidthVp < 400) {
  67.       newBreakPoint = 'xs';
  68.     } else if (windowWidthVp < 600) {
  69.       newBreakPoint = 'sm';
  70.     } else if (windowWidthVp < 800) {
  71.       newBreakPoint = 'md';
  72.     } else {
  73.       newBreakPoint = 'lg';
  74.     }
  75.     if (this.currentBreakPoint !== newBreakPoint) {
  76.       this.currentBreakPoint = newBreakPoint;
  77.       // 使用状态变量记录当前断点值
  78.       AppStorage.setOrCreate('currentBreakpoint', this.currentBreakPoint);
  79.     }
  80.   }
  81.   onWindowStageDestroy(): void {
  82.     // Main window is destroyed, release UI related resources
  83.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
  84.   }
  85.   onForeground(): void {
  86.     // Ability has brought to foreground
  87.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');
  88.   }
  89.   onBackground(): void {
  90.     // Ability has back to background
  91.     hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');
  92.   }
  93. }
  94. ts
复制代码

使用geometryTransition共享元素转场

[geometryTransition]用于组件内隐式共享元素转场,在视图状态切换过程中提供丝滑的上下文继续过渡体验。
geometryTransition的使用方式为对需要添加一镜到底动效的两个组件使用geometryTransition接口绑定同一id,这样在其中一个组件消失同时另一个组件创建出现的时间,体系会对二者添加一镜到底动效。
geometryTransition绑定两个对象的实现方式使得geometryTransition区别于其他方法,最得当用于两个不同对象之间完成一镜到底。
geometryTransition的简单使用

对于同一个页面中的两个元素的一镜到底结果,geometryTransition接口的简单使用示比方下:
  1. import { curves } from '@kit.ArkUI';
  2. @Entry
  3. @Component
  4. struct IfElseGeometryTransition {
  5.   @State isShow: boolean = false;
  6.   build() {
  7.     Stack({ alignContent: Alignment.Center }) {
  8.       if (this.isShow) {
  9.         Image($r('app.media.spring'))
  10.           .autoResize(false)
  11.           .clip(true)
  12.           .width(200)
  13.           .height(200)
  14.           .borderRadius(100)
  15.           .geometryTransition("picture")
  16.           .transition(TransitionEffect.OPACITY)
  17.           // 在打断场景下,即动画过程中点击页面触发下一次转场,如果不加id,则会出现重影
  18.           // 加了id之后,新建的spring图片会复用之前的spring图片节点,不会重新创建节点,也就不会有重影问题
  19.           // 加id的规则为加在if和else下的第一个节点上,有多个并列节点则也需要进行添加
  20.           .id('item1')
  21.       } else {
  22.         // geometryTransition此处绑定的是容器,那么容器内的子组件需设为相对布局跟随父容器变化,
  23.         // 套多层容器为了说明相对布局约束传递
  24.         Column() {
  25.           Column() {
  26.             Image($r('app.media.sky'))
  27.               .size({ width: '100%', height: '100%' })
  28.           }
  29.           .size({ width: '100%', height: '100%' })
  30.         }
  31.         .width(100)
  32.         .height(100)
  33.         // geometryTransition会同步圆角,但仅限于geometryTransition绑定处,此处绑定的是容器
  34.         // 则对容器本身有圆角同步而不会操作容器内部子组件的borderRadius
  35.         .borderRadius(50)
  36.         .clip(true)
  37.         .geometryTransition("picture")
  38.         // transition保证节点离场不被立即析构,设置通用转场效果
  39.         .transition(TransitionEffect.OPACITY)
  40.         .position({ x: 40, y: 40 })
  41.         .id('item2')
  42.       }
  43.     }
  44.     .onClick(() => {
  45.       this.getUIContext()?.animateTo({
  46.         curve: curves.springMotion()
  47.       }, () => {
  48.         this.isShow = !this.isShow;
  49.       })
  50.     })
  51.     .size({ width: '100%', height: '100%' })
  52.   }
  53. }
  54. ts
复制代码

geometryTransition结合模态转场使用

更多的场景中,需要对一个页面的元素与另一个页面的元素添加一镜到底动效。可以通过geometryTransition搭配模态转场接口实现。以点击头像弹出个人信息页的demo为例:
  1. class PostData {
  2.   avatar: Resource = $r('app.media.flower');
  3.   name: string = '';
  4.   message: string = '';
  5.   images: Resource[] = [];
  6. }
  7. @Entry
  8. @Component
  9. struct Index {
  10.   @State isPersonalPageShow: boolean = false;
  11.   @State selectedIndex: number = 0;
  12.   @State alphaValue: number = 1;
  13.   private allPostData: PostData[] = [
  14.     { avatar: $r('app.media.flower'), name: 'Alice', message: '天气晴朗',
  15.       images: [$r('app.media.spring'), $r('app.media.tree')] },
  16.     { avatar: $r('app.media.sky'), name: 'Bob', message: '你好世界',
  17.       images: [$r('app.media.island')] },
  18.     { avatar: $r('app.media.tree'), name: 'Carl', message: '万物生长',
  19.       images: [$r('app.media.flower'), $r('app.media.sky'), $r('app.media.spring')] }];
  20.   private onAvatarClicked(index: number): void {
  21.     this.selectedIndex = index;
  22.     this.getUIContext()?.animateTo({
  23.       duration: 350,
  24.       curve: Curve.Friction
  25.     }, () => {
  26.       this.isPersonalPageShow = !this.isPersonalPageShow;
  27.       this.alphaValue = 0;
  28.     });
  29.   }
  30.   private onPersonalPageBack(index: number): void {
  31.     this.getUIContext()?.animateTo({
  32.       duration: 350,
  33.       curve: Curve.Friction
  34.     }, () => {
  35.       this.isPersonalPageShow = !this.isPersonalPageShow;
  36.       this.alphaValue = 1;
  37.     });
  38.   }
  39.   @Builder
  40.   PersonalPageBuilder(index: number) {
  41.     Column({ space: 20 }) {
  42.       Image(this.allPostData[index].avatar)
  43.         .size({ width: 200, height: 200 })
  44.         .borderRadius(100)
  45.         // 头像配置共享元素效果,与点击的头像的id匹配
  46.         .geometryTransition(index.toString())
  47.         .clip(true)
  48.         .transition(TransitionEffect.opacity(0.99))
  49.       Text(this.allPostData[index].name)
  50.         .font({ size: 30, weight: 600 })
  51.         // 对文本添加出现转场效果
  52.         .transition(TransitionEffect.asymmetric(
  53.           TransitionEffect.OPACITY
  54.             .combine(TransitionEffect.translate({ y: 100 })),
  55.           TransitionEffect.OPACITY.animation({ duration: 0 })
  56.         ))
  57.       Text('你好,我是' + this.allPostData[index].name)
  58.         // 对文本添加出现转场效果
  59.         .transition(TransitionEffect.asymmetric(
  60.           TransitionEffect.OPACITY
  61.             .combine(TransitionEffect.translate({ y: 100 })),
  62.           TransitionEffect.OPACITY.animation({ duration: 0 })
  63.         ))
  64.     }
  65.     .padding({ top: 20 })
  66.     .size({ width: 360, height: 780 })
  67.     .backgroundColor(Color.White)
  68.     .onClick(() => {
  69.       this.onPersonalPageBack(index);
  70.     })
  71.     .transition(TransitionEffect.asymmetric(
  72.       TransitionEffect.opacity(0.99),
  73.       TransitionEffect.OPACITY
  74.     ))
  75.   }
  76.   build() {
  77.     Column({ space: 20 }) {
  78.       ForEach(this.allPostData, (postData: PostData, index: number) => {
  79.         Column() {
  80.           Post({ data: postData, index: index, onAvatarClicked: (index: number) => { this.onAvatarClicked(index) } })
  81.         }
  82.         .width('100%')
  83.       }, (postData: PostData, index: number) => index.toString())
  84.     }
  85.     .size({ width: '100%', height: '100%' })
  86.     .backgroundColor('#40808080')
  87.     .bindContentCover(this.isPersonalPageShow,
  88.       this.PersonalPageBuilder(this.selectedIndex), { modalTransition: ModalTransition.NONE })
  89.     .opacity(this.alphaValue)
  90.   }
  91. }
  92. @Component
  93. export default struct  Post {
  94.   @Prop data: PostData;
  95.   @Prop index: number;
  96.   @State expandImageSize: number = 100;
  97.   @State avatarSize: number = 50;
  98.   private onAvatarClicked: (index: number) => void = (index: number) => { };
  99.   build() {
  100.     Column({ space: 20 }) {
  101.       Row({ space: 10 }) {
  102.         Image(this.data.avatar)
  103.           .size({ width: this.avatarSize, height: this.avatarSize })
  104.           .borderRadius(this.avatarSize / 2)
  105.           .clip(true)
  106.           .onClick(() => {
  107.             this.onAvatarClicked(this.index);
  108.           })
  109.           // 对头像绑定共享元素转场的id
  110.           .geometryTransition(this.index.toString(), {follow:true})
  111.           .transition(TransitionEffect.OPACITY.animation({ duration: 350, curve: Curve.Friction }))
  112.         Text(this.data.name)
  113.       }
  114.       .justifyContent(FlexAlign.Start)
  115.       Text(this.data.message)
  116.       Row({ space: 15 }) {
  117.         ForEach(this.data.images, (imageResource: Resource, index: number) => {
  118.           Image(imageResource)
  119.             .size({ width: 100, height: 100 })
  120.         }, (imageResource: Resource, index: number) => index.toString())
  121.       }
  122.     }
  123.     .backgroundColor(Color.White)
  124.     .size({ width: '100%', height: 250 })
  125.     .alignItems(HorizontalAlign.Start)
  126.     .padding({ left: 10, top: 10 })
  127.   }
  128. }
  129. ts
复制代码
结果为点击主页的头像后,弹出模态页面显示个人信息,并且两个页面之间的头像做一镜到底动效:


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

张裕

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表