js-apis-animator.md 15.1 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.animator (动画)
Z
zengyawen 已提交
2

T
explain  
tianyu 已提交
3 4
本模块提供组件动画效果,包括定义动画、启动动画和以相反的顺序播放动画等。

5
> **说明:**
H
HelloCrease 已提交
6
>
Z
zengyawen 已提交
7
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Y
yamila 已提交
8
>
Y
yamila 已提交
9
> 该模块不支持在[UIAbility](./js-apis-app-ability-uiAbility.md)的文件声明处使用,即不能在UIAbility的生命周期中调用,需要在创建组件实例后使用。
H
huangdong57 已提交
10 11 12 13
>
> 本模块功能依赖UI的执行上下文,不可在UI上下文不明确的地方使用,参见[UIContext](./js-apis-arkui-UIContext.md#uicontext)说明。
>
> 从API version 10开始,可以通过使用[UIContext](./js-apis-arkui-UIContext.md#uicontext)中的[createAnimator](./js-apis-arkui-UIContext.md#createanimator)来明确UI的执行上下文。
Z
zengyawen 已提交
14 15

## 导入模块
Z
zengyawen 已提交
16

H
HelloCrease 已提交
17
```js
L
lixinnan 已提交
18
import animator, { AnimatorResult } from '@ohos.animator';
Z
zengyawen 已提交
19
```
Z
zhaoxinyu 已提交
20
## create<sup>9+</sup>
Z
zengyawen 已提交
21

Z
zhaoxinyu 已提交
22
create(options: AnimatorOptions): AnimatorResult
Z
zengyawen 已提交
23

24
定义Animator类。
Z
zengyawen 已提交
25

26
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full
Z
zengyawen 已提交
27

28
**参数:** 
Z
zhaoxinyu 已提交
29

H
HelloCrease 已提交
30 31 32
| 参数名     | 类型                                  | 必填   | 说明      |
| ------- | ----------------------------------- | ---- | ------- |
| options | [AnimatorOptions](#animatoroptions) | 是    | 定义动画选项。 |
Z
zengyawen 已提交
33

34
**返回值:** 
35

H
HelloCrease 已提交
36 37
| 类型                                | 说明            |
| --------------------------------- | ------------- |
T
explain  
tianyu 已提交
38
| [AnimatorResult](#animatorresult) | Animator结果接口。 |
Z
zengyawen 已提交
39

40
**示例:** 
Z
zengyawen 已提交
41

H
HelloCrease 已提交
42
  ```js
L
lixinnan 已提交
43
import animator, { AnimatorResult } from '@ohos.animator';
Y
yamila 已提交
44 45 46 47 48 49 50 51 52 53 54 55

let options: AnimatorOptions = { // xxx.js文件中不需要强调显式类型AnimatorOptions
  duration: 1500,
  easing: "friction",
  delay: 0,
  fill: "forwards",
  direction: "normal",
  iterations: 3,
  begin: 200.0,
  end: 400.0
};
animator.create(options);
Z
zengyawen 已提交
56
  ```
57 58 59 60 61

## AnimatorResult

定义Animator结果接口。

Z
zhaoxinyu 已提交
62 63 64
### reset<sup>9+</sup>

reset(options: AnimatorOptions): void
65 66 67 68 69 70

更新当前动画器。

**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**参数:** 
Z
zhaoxinyu 已提交
71

H
HelloCrease 已提交
72 73 74
| 参数名     | 类型                                  | 必填   | 说明      |
| ------- | ----------------------------------- | ---- | ------- |
| options | [AnimatorOptions](#animatoroptions) | 是    | 定义动画选项。 |
75

Z
zhaoxinyu 已提交
76 77 78 79
**错误码:**

以下错误码的详细介绍请参见[ohos.animator(动画)](../errorcodes/errorcode-animator.md)错误码。

80
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
81
| --------- | ------- |
L
luoying_ace_admin 已提交
82
| 100001    | if no page is found for pageId or fail to get object property list. |
Z
zhaoxinyu 已提交
83 84


85
**示例:**
Z
zhaoxinyu 已提交
86

H
HelloCrease 已提交
87
```js
Y
yamila 已提交
88
let options: AnimatorOptions = { // xxx.js文件中不需要强调显式类型AnimatorOptions
Z
zhaoxinyu 已提交
89
  duration: 1500,
Y
yamila 已提交
90
  easing: "friction",
Z
zhaoxinyu 已提交
91
  delay: 0,
Y
yamila 已提交
92 93
  fill: "forwards",
  direction: "normal",
Z
zhaoxinyu 已提交
94 95
  iterations: 3,
  begin: 200.0,
Y
yamila 已提交
96
  end: 400.0
Z
zhaoxinyu 已提交
97 98 99 100 101 102
};
try {
  animator.reset(options);
} catch(error) {
  console.error(`Animator reset failed, error code: ${error.code}, message: ${error.message}.`);
}
103 104 105 106 107 108
```

### play

play(): void

Y
yamila 已提交
109
启动动画。动画会保留上一次的播放状态,比如播放状态设置reverse后,再次播放会保留reverse的播放状态。
110

111 112 113
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**示例:**
Z
zhaoxinyu 已提交
114

H
HelloCrease 已提交
115
```js
116
animator.play();
117 118 119 120 121 122
```

### finish

finish(): void

123 124
结束动画。

125 126 127
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**示例:**
Z
zhaoxinyu 已提交
128

H
HelloCrease 已提交
129
```js
130
animator.finish();
131 132 133 134 135 136
```

### pause

pause(): void

137 138
暂停动画。

139 140 141
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**示例:**
Z
zhaoxinyu 已提交
142

H
HelloCrease 已提交
143
```js
144
animator.pause();
145 146 147 148 149 150
```

### cancel

cancel(): void

151 152
删除动画。

153 154 155
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**示例:**
Z
zhaoxinyu 已提交
156

H
HelloCrease 已提交
157
```js
158
animator.cancel();
159 160 161 162 163 164
```

### reverse

reverse(): void

165 166
以相反的顺序播放动画。

167 168
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

169
**示例:**
Z
zhaoxinyu 已提交
170

H
HelloCrease 已提交
171
```js
172
animator.reverse();
173 174
```

175 176 177 178
### onframe

onframe: (progress: number) => void

179
接收到帧时回调。
180

181 182
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

183
**参数:** 
Z
zhaoxinyu 已提交
184

H
HelloCrease 已提交
185 186 187
| 参数名      | 类型     | 必填   | 说明       |
| -------- | ------ | ---- | -------- |
| progress | number | 是    | 动画的当前进度。 |
188 189

**示例:**
190

H
HelloCrease 已提交
191
```js
L
liyujie 已提交
192 193 194 195
let animatorResult = animator.create(options)
animatorResult.onframe = function(value) {
  console.info("onframe callback")
}
196
```
197 198 199 200 201

### onfinish

onfinish: () => void

202
动画完成时回调。
203

204 205
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

206
**示例:**
Z
zhaoxinyu 已提交
207

H
HelloCrease 已提交
208
```js
L
liyujie 已提交
209 210 211 212
let animatorResult = animator.create(options)
animatorResult.onfinish = function() {
  console.info("onfinish callback")
}
213 214
```

215 216 217
### oncancel

oncancel: () => void
218

219
动画被取消时回调。
220

221 222
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

223
**示例:**
Z
zhaoxinyu 已提交
224

H
HelloCrease 已提交
225
```js
L
liyujie 已提交
226 227 228 229
let animatorResult = animator.create(options)
animatorResult.oncancel = function() {
  console.info("oncancel callback")
}
230 231
```

232 233 234 235
### onrepeat

onrepeat: () => void

236 237
动画重复时回调。

238 239
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

240
**示例:**
Z
zhaoxinyu 已提交
241

H
HelloCrease 已提交
242
```js
L
liyujie 已提交
243 244 245 246
let animatorResult = animator.create(options)
animatorResult.onrepeat = function() {
  console.info("onrepeat callback")
}
247 248
```

Z
zhaoxinyu 已提交
249 250


251 252 253 254
## AnimatorOptions

定义动画选项。

255
**系统能力:** SystemCapability.ArkUI.ArkUI.Full
256

Y
yamila 已提交
257 258 259
| 名称       | 类型                                                        | 必填 | 说明                                                         |
| ---------- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| duration   | number                                                      | 是   | 动画播放的时长,单位毫秒。                                   |
H
hehongyang9 已提交
260
| easing     | string                                                      | 是   | 动画插值曲线,仅支持以下可选值:<br/>"linear":动画线性变化。<br/>"ease":动画开始和结束时的速度较慢,cubic-bezier(0.25、0.1、0.25、1.0)。<br/>"ease-in":动画播放速度先慢后快,cubic-bezier(0.42, 0.0, 1.0, 1.0)。<br/>"ease-out":动画播放速度先快后慢,cubic-bezier(0.0, 0.0, 0.58, 1.0)。<br/>"ease-in-out":动画播放速度先加速后减速,cubic-bezier(0.42, 0.0, 0.58, 1.0)。<br/>"fast-out-slow-in":标准曲线,cubic-bezier(0.4,0.0,0.2,1.0)。<br/>"linear-out-slow-in":减速曲线,cubic-bezier(0.0,0.0,0.2,1.0)。<br/>"friction":阻尼曲线,cubic-bezier(0.2, 0.0, 0.2, 1.0)。<br/>"extreme-deceleration":急缓曲线,cubic-bezier(0.0, 0.0, 0.0, 1.0)。<br/>"rhythm":节奏曲线,cubic-bezier(0.7, 0.0, 0.2, 1.0)。<br/>"sharp":锐利曲线,cubic-bezier(0.33, 0.0, 0.67, 1.0)。<br/>"smooth":平滑曲线,cubic-bezier(0.4, 0.0, 0.4, 1.0)。<br/>"cubic-bezier(x1,y1,x2,y2)":三次贝塞尔曲线,x1、x2的值必须处于0-1之间。例如"cubic-bezier(0.42,0.0,0.58,1.0)"。<br/>"steps(number,step-position)":阶梯曲线,number必须设置,为正整数,step-position参数可选,支持设置start或end,默认值为end。例如"steps(3,start)"。 |
Y
yamila 已提交
261 262 263
| delay      | number                                                      | 是   | 动画延时播放时长,单位毫秒,设置为0时,表示不延时。          |
| fill       | "none" \| "forwards" \| "backwards" \| "both"               | 是   | 动画执行后是否恢复到初始状态,动画执行后,动画结束时的状态(在最后一个关键帧中定义)将保留。<br/>"none":在动画执行之前和之后都不会应用任何样式到目标上。<br/>"forwards":在动画结束后,目标将保留动画结束时的状态(在最后一个关键帧中定义)。<br/>"backwards":动画将在animation-delay期间应用第一个关键帧中定义的值。当animation-direction为"normal"或"alternate"时应用from关键帧中的值,当animation-direction为"reverse"或"alternate-reverse"时应用to关键帧中的值。<br/>"both":动画将遵循forwards和backwards的规则,从而在两个方向上扩展动画属性。 |
| direction  | "normal" \| "reverse" \| "alternate" \| "alternate-reverse" | 是   | 动画播放模式。<br/>"normal": 动画正向循环播放。<br/>"reverse": 动画反向循环播放。<br/>"alternate":动画交替循环播放,奇数次正向播放,偶数次反向播放。<br/>"alternate-reverse":动画反向交替循环播放,奇数次反向播放,偶数次正向播放。 |
264
| iterations | number                                                      | 是   | 动画播放次数。设置为0时不播放,设置为-1时无限次播放。<br/>**说明:** 设置为除-1外其他负数视为无效取值,无效取值动画默认播放1次。 |
Y
yamila 已提交
265 266
| begin      | number                                                      | 是   | 动画插值起点。                                               |
| end        | number                                                      | 是   | 动画插值终点。                                               |
Z
zhaoxinyu 已提交
267 268 269


## 完整示例
L
liyujie 已提交
270
### 基于JS扩展的类Web开发范式
Z
zhaoxinyu 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287

```html
<!-- hml -->
<div class="container">
  <div class="Animation" style="height: {{divHeight}}px; width: {{divWidth}}px; background-color: red;" onclick="Show">
  </div>
</div>
```

```js
export default {
  data: {
    divWidth: 200,
    divHeight: 200,
    animator: null
  },
  onInit() {
L
luoying_ace_admin 已提交
288
    let options = {
Z
zhaoxinyu 已提交
289
      duration: 1500,
Y
yamila 已提交
290
      easing: "friction",
Z
zhaoxinyu 已提交
291
      delay: 0,
Y
yamila 已提交
292 293
      fill: "forwards",
      direction: "normal",
Z
zhaoxinyu 已提交
294 295 296 297 298 299 300
      iterations: 2,
      begin: 200.0,
      end: 400.0
    };
    this.animator = animator.create(options);
  },
  Show() {
L
luoying_ace_admin 已提交
301
    let options1 = {
Z
zhaoxinyu 已提交
302
      duration: 1500,
Y
yamila 已提交
303
      easing: "friction",
Z
zhaoxinyu 已提交
304
      delay: 0,
Y
yamila 已提交
305
      fill: "forwards",
Z
zhaoxinyu 已提交
306 307 308 309 310 311 312 313 314 315
      direction: "normal",
      iterations: 2,
      begin: 0,
      end: 400.0,
    };
    try {
      this.animator.reset(options1);
    } catch(error) {
      console.error(`Animator reset failed, error code: ${error.code}, message: ${error.message}.`);
    }
L
luoying_ace_admin 已提交
316
    let _this = this;
Z
zhaoxinyu 已提交
317 318 319 320 321 322 323 324 325 326 327
    this.animator.onframe = function(value) {
      _this.divWidth = value;
      _this.divHeight = value;
    };
    this.animator.play();
  }
}
```

  ![zh-cn_image_00007](figures/zh-cn_image_00007.gif)

L
liyujie 已提交
328 329 330
### 基于TS扩展的声明式开发范式

```ts
L
lixinnan 已提交
331
import animator, { AnimatorResult } from '@ohos.animator';
L
liyujie 已提交
332 333 334 335 336

@Entry
@Component
struct AnimatorTest {
  private TAG: string = '[AnimatorTest]'
L
lixinnan 已提交
337
  private backAnimator: AnimatorResult | undefined = undefined
L
liyujie 已提交
338 339 340 341 342 343 344 345
  private flag: boolean = false
  @State wid: number = 100
  @State hei: number = 100

  create() {
    let _this = this
    this.backAnimator = animator.create({
      duration: 2000,
Y
yamila 已提交
346
      easing: "ease",
L
liyujie 已提交
347
      delay: 0,
Y
yamila 已提交
348 349
      fill: "none",
      direction: "normal",
L
liyujie 已提交
350 351 352 353
      iterations: 1,
      begin: 100,
      end: 200
    })
L
lixinnan 已提交
354
    this.backAnimator.onfinish = ()=> {
L
liyujie 已提交
355 356 357
      _this.flag = true
      console.info(_this.TAG, 'backAnimator onfinish')
    }
L
lixinnan 已提交
358
    this.backAnimator.onrepeat = ()=> {
L
liyujie 已提交
359 360
      console.info(_this.TAG, 'backAnimator repeat')
    }
L
lixinnan 已提交
361
    this.backAnimator.oncancel = ()=> {
L
liyujie 已提交
362 363
      console.info(_this.TAG, 'backAnimator cancel')
    }
L
lixinnan 已提交
364
    this.backAnimator.onframe = (value:number)=> {
L
liyujie 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
      _this.wid = value
      _this.hei = value
    }
  }

  build() {
    Column() {
      Column() {
        Column()
          .width(this.wid)
          .height(this.hei)
          .backgroundColor(Color.Red)
      }
      .width('100%')
      .height(300)

      Column() {
        Row() {
          Button('create')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              this.create()
            })
        }
        .padding(10)

        Row() {
          Button('play')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              this.flag = false
L
lixinnan 已提交
398 399 400
              if(this.backAnimator){
                this.backAnimator.play()
              }
L
liyujie 已提交
401 402 403 404 405 406 407 408 409
            })
        }
        .padding(10)

        Row() {
          Button('pause')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
L
lixinnan 已提交
410 411 412
              if(this.backAnimator){
                this.backAnimator.pause()
              }
L
liyujie 已提交
413 414 415 416 417 418 419 420 421 422
            })
        }
        .padding(10)

        Row() {
          Button('finish')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              this.flag = true
L
lixinnan 已提交
423 424 425
              if(this.backAnimator){
                this.backAnimator.finish()
              }
L
liyujie 已提交
426 427 428 429 430 431 432 433 434 435
            })
        }
        .padding(10)

        Row() {
          Button('reverse')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              this.flag = false
L
lixinnan 已提交
436 437 438
              if(this.backAnimator){
                this.backAnimator.reverse()
              }
L
liyujie 已提交
439 440 441 442 443 444 445 446 447
            })
        }
        .padding(10)

        Row() {
          Button('cancel')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
L
lixinnan 已提交
448 449 450
              if(this.backAnimator){
                this.backAnimator.cancel()
              }
L
liyujie 已提交
451 452 453 454 455 456 457 458 459 460 461
            })
        }
        .padding(10)

        Row() {
          Button('reset')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              if (this.flag) {
                this.flag = false
L
lixinnan 已提交
462 463 464 465 466 467 468 469 470 471 472 473
                if(this.backAnimator){
                  this.backAnimator.reset({
                    duration: 5000,
                    easing: "ease-in",
                    delay: 0,
                    fill: "none",
                    direction: "normal",
                    iterations: 4,
                    begin: 100,
                    end: 300
                  })
                }
L
liyujie 已提交
474 475 476 477 478 479 480 481 482 483 484 485
              } else {
                console.info(this.TAG, 'Animation not ended')
              }
            })
        }
        .padding(10)
      }
    }
  }
}
```

Z
zhaoxinyu 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
## update<sup>(deprecated)</sup>

update(options: AnimatorOptions): void

更新当前动画器。

从API version9开始不再维护,建议使用[reset<sup>9+</sup>](#reset9)

**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**参数:** 

| 参数名     | 类型                                  | 必填   | 说明      |
| ------- | ----------------------------------- | ---- | ------- |
| options | [AnimatorOptions](#animatoroptions) | 是    | 定义动画选项。 |

**示例:**

```js
animator.update(options);
```

## createAnimator<sup>(deprecated)</sup>

createAnimator(options: AnimatorOptions): AnimatorResult

定义Animator类。

从API version9开始不再维护,建议使用[create<sup>9+</sup>](#create9)

**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

**参数:** 

| 参数名     | 类型                                  | 必填   | 说明      |
| ------- | ----------------------------------- | ---- | ------- |
| options | [AnimatorOptions](#animatoroptions) | 是    | 定义动画选项。 |

**返回值:** 

| 类型                                | 说明            |
| --------------------------------- | ------------- |
| [AnimatorResult](#animatorresult) | Animator结果接口。 |

**示例:** 

```js
Y
yamila 已提交
533
let options: AnimatorOptions = { // xxx.js文件中不需要强调显式类型AnimatorOptions
Z
zhaoxinyu 已提交
534
  duration: 1500,
Y
yamila 已提交
535
  easing: "friction",
Z
zhaoxinyu 已提交
536
  delay: 0,
Y
yamila 已提交
537 538
  fill: "forwards",
  direction: "normal",
Z
zhaoxinyu 已提交
539 540 541 542 543 544
  iterations: 3,
  begin: 200.0,
  end: 400.0,
};
this.animator = animator.createAnimator(options);
```