未验证 提交 1e90871d 编写于 作者: L luoying_ace 提交者: Gitee

update zh-cn/application-dev/reference/arkui-ts/ts-page-transition-animation.md.

Signed-off-by: Nluoying_ace <luoying19@huawei.com>
上级 afd784e2
......@@ -63,7 +63,7 @@ struct PageTransitionExample1 {
build() {
Column() {
Navigator({ target: 'pages/page1', type: NavigationType.Push }) {
Image($r('app.media.bg1')).width('100%').height('100%')
Image($r('app.media.bg1')).width('100%').height('100%') // 图片存放在media文件夹下
}
}.scale({ x: this.scale1 }).opacity(this.opacity1)
}
......@@ -94,9 +94,9 @@ struct AExample {
build() {
Column() {
Navigator({ target: 'pages/index', type: NavigationType.Push }) {
Image($r('app.media.bg2')).width('100%').height('100%')
Image($r('app.media.bg2')).width('100%').height('100%') // 图片存放在media文件夹下
}
}.height("100%").width("100%").scale({ x: this.scale2 }).opacity(this.opacity2)
}.width('100%').height('100%').scale({ x: this.scale2 }).opacity(this.opacity2)
}
// 自定义方式1:完全自定义转场过程的效果
pageTransition() {
......@@ -129,7 +129,7 @@ struct PageTransitionExample {
build() {
Column() {
Navigator({ target: 'pages/page1', type: NavigationType.Push }) {
Image($r('app.media.bg1')).width('100%').height('100%')
Image($r('app.media.bg1')).width('100%').height('100%') // 图片存放在media文件夹下
}
}.scale({ x: this.scale1 }).opacity(this.opacity1)
}
......@@ -156,7 +156,7 @@ struct PageTransitionExample1 {
build() {
Column() {
Navigator({ target: 'pages/index', type: NavigationType.Push }) {
Image($r('app.media.bg2')).width('100%').height('100%')
Image($r('app.media.bg2')).width('100%').height('100%') // 图片存放在media文件夹下
}
}.scale({ x: this.scale2 }).opacity(this.opacity2)
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册