js-apis-animator.md 14.0 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)中使用,需要在创建组件实例后使用。
Z
zengyawen 已提交
10

Z
zengyawen 已提交
11 12

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

H
HelloCrease 已提交
14
```js
Z
zengyawen 已提交
15 16
import animator from '@ohos.animator';
```
Z
zhaoxinyu 已提交
17
## create<sup>9+</sup>
Z
zengyawen 已提交
18

Z
zhaoxinyu 已提交
19
create(options: AnimatorOptions): AnimatorResult
Z
zengyawen 已提交
20

21
定义Animator类。
Z
zengyawen 已提交
22

23
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full
Z
zengyawen 已提交
24

25
**参数:** 
Z
zhaoxinyu 已提交
26

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

31
**返回值:** 
32

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

37
**示例:** 
Z
zengyawen 已提交
38

H
HelloCrease 已提交
39
  ```js
L
luoying_ace_admin 已提交
40
  let options = {
Z
zhaoxinyu 已提交
41
    duration: 1500,
Y
yamila 已提交
42
    easing: "friction",
Z
zhaoxinyu 已提交
43
    delay: 0,
Y
yamila 已提交
44 45
    fill: "forwards",
    direction: "normal",
Z
zhaoxinyu 已提交
46 47
    iterations: 3,
    begin: 200.0,
Y
yamila 已提交
48
    end: 400.0
Z
zhaoxinyu 已提交
49 50
  };
  animator.create(options);
Z
zengyawen 已提交
51
  ```
52 53 54 55 56

## AnimatorResult

定义Animator结果接口。

Z
zhaoxinyu 已提交
57 58 59
### reset<sup>9+</sup>

reset(options: AnimatorOptions): void
60 61 62 63 64 65

更新当前动画器。

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

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

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

Z
zhaoxinyu 已提交
71 72 73 74
**错误码:**

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

75
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
76
| --------- | ------- |
L
luoying_ace_admin 已提交
77
| 100001    | if no page is found for pageId or fail to get object property list. |
Z
zhaoxinyu 已提交
78 79


80
**示例:**
Z
zhaoxinyu 已提交
81

H
HelloCrease 已提交
82
```js
L
luoying_ace_admin 已提交
83
let options = {
Z
zhaoxinyu 已提交
84
  duration: 1500,
Y
yamila 已提交
85
  easing: "friction",
Z
zhaoxinyu 已提交
86
  delay: 0,
Y
yamila 已提交
87 88
  fill: "forwards",
  direction: "normal",
Z
zhaoxinyu 已提交
89 90
  iterations: 3,
  begin: 200.0,
Y
yamila 已提交
91
  end: 400.0
Z
zhaoxinyu 已提交
92 93 94 95 96 97
};
try {
  animator.reset(options);
} catch(error) {
  console.error(`Animator reset failed, error code: ${error.code}, message: ${error.message}.`);
}
98 99 100 101 102 103
```

### play

play(): void

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

106 107 108
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

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

H
HelloCrease 已提交
110
```js
111
animator.play();
112 113 114 115 116 117
```

### finish

finish(): void

118 119
结束动画。

120 121 122
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

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

H
HelloCrease 已提交
124
```js
125
animator.finish();
126 127 128 129 130 131
```

### pause

pause(): void

132 133
暂停动画。

134 135 136
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

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

H
HelloCrease 已提交
138
```js
139
animator.pause();
140 141 142 143 144 145
```

### cancel

cancel(): void

146 147
删除动画。

148 149 150
**系统能力:**  SystemCapability.ArkUI.ArkUI.Full

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

H
HelloCrease 已提交
152
```js
153
animator.cancel();
154 155 156 157 158 159
```

### reverse

reverse(): void

160 161
以相反的顺序播放动画。

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

164
**示例:**
Z
zhaoxinyu 已提交
165

H
HelloCrease 已提交
166
```js
167
animator.reverse();
168 169
```

170 171 172 173
### onframe

onframe: (progress: number) => void

174
接收到帧时回调。
175

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

178
**参数:** 
Z
zhaoxinyu 已提交
179

H
HelloCrease 已提交
180 181 182
| 参数名      | 类型     | 必填   | 说明       |
| -------- | ------ | ---- | -------- |
| progress | number | 是    | 动画的当前进度。 |
183 184

**示例:**
185

H
HelloCrease 已提交
186
```js
L
liyujie 已提交
187 188 189 190
let animatorResult = animator.create(options)
animatorResult.onframe = function(value) {
  console.info("onframe callback")
}
191
```
192 193 194 195 196

### onfinish

onfinish: () => void

197
动画完成时回调。
198

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

201
**示例:**
Z
zhaoxinyu 已提交
202

H
HelloCrease 已提交
203
```js
L
liyujie 已提交
204 205 206 207
let animatorResult = animator.create(options)
animatorResult.onfinish = function() {
  console.info("onfinish callback")
}
208 209
```

210 211 212
### oncancel

oncancel: () => void
213

214
动画被取消时回调。
215

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

218
**示例:**
Z
zhaoxinyu 已提交
219

H
HelloCrease 已提交
220
```js
L
liyujie 已提交
221 222 223 224
let animatorResult = animator.create(options)
animatorResult.oncancel = function() {
  console.info("oncancel callback")
}
225 226
```

227 228 229 230
### onrepeat

onrepeat: () => void

231 232
动画重复时回调。

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

235
**示例:**
Z
zhaoxinyu 已提交
236

H
HelloCrease 已提交
237
```js
L
liyujie 已提交
238 239 240 241
let animatorResult = animator.create(options)
animatorResult.onrepeat = function() {
  console.info("onrepeat callback")
}
242 243
```

Z
zhaoxinyu 已提交
244 245


246 247 248 249
## AnimatorOptions

定义动画选项。

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

Y
yamila 已提交
252 253 254 255 256 257 258
| 名称       | 类型                                                        | 必填 | 说明                                                         |
| ---------- | ----------------------------------------------------------- | ---- | ------------------------------------------------------------ |
| duration   | number                                                      | 是   | 动画播放的时长,单位毫秒。                                   |
| 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):在三次贝塞尔函数中定义动画变化过程,入参的值必须处于0-1之间。<br/>steps(number, step-position):阶梯曲线。number必须设置,支持的类型为int。step-position参数可选,支持设置start或end,默认值为end。 |
| 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":动画反向交替循环播放,奇数次反向播放,偶数次正向播放。 |
259
| iterations | number                                                      | 是   | 动画播放次数。设置为0时不播放,设置为-1时无限次播放。<br/>**说明:** 设置为除-1外其他负数视为无效取值,无效取值动画默认播放1次。 |
Y
yamila 已提交
260 261
| begin      | number                                                      | 是   | 动画插值起点。                                               |
| end        | number                                                      | 是   | 动画插值终点。                                               |
Z
zhaoxinyu 已提交
262 263 264


## 完整示例
L
liyujie 已提交
265
### 基于JS扩展的类Web开发范式
Z
zhaoxinyu 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282

```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 已提交
283
    let options = {
Z
zhaoxinyu 已提交
284
      duration: 1500,
Y
yamila 已提交
285
      easing: "friction",
Z
zhaoxinyu 已提交
286
      delay: 0,
Y
yamila 已提交
287 288
      fill: "forwards",
      direction: "normal",
Z
zhaoxinyu 已提交
289 290 291 292 293 294 295
      iterations: 2,
      begin: 200.0,
      end: 400.0
    };
    this.animator = animator.create(options);
  },
  Show() {
L
luoying_ace_admin 已提交
296
    let options1 = {
Z
zhaoxinyu 已提交
297
      duration: 1500,
Y
yamila 已提交
298
      easing: "friction",
Z
zhaoxinyu 已提交
299
      delay: 0,
Y
yamila 已提交
300
      fill: "forwards",
Z
zhaoxinyu 已提交
301 302 303 304 305 306 307 308 309 310
      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 已提交
311
    let _this = this;
Z
zhaoxinyu 已提交
312 313 314 315 316 317 318 319 320 321 322
    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 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
### 基于TS扩展的声明式开发范式

```ts
import animator from '@ohos.animator';

@Entry
@Component
struct AnimatorTest {
  private TAG: string = '[AnimatorTest]'
  private backAnimator: any = undefined
  private flag: boolean = false
  @State wid: number = 100
  @State hei: number = 100

  create() {
    let _this = this
    this.backAnimator = animator.create({
      duration: 2000,
Y
yamila 已提交
341
      easing: "ease",
L
liyujie 已提交
342
      delay: 0,
Y
yamila 已提交
343 344
      fill: "none",
      direction: "normal",
L
liyujie 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
      iterations: 1,
      begin: 100,
      end: 200
    })
    this.backAnimator.onfinish = function () {
      _this.flag = true
      console.info(_this.TAG, 'backAnimator onfinish')
    }
    this.backAnimator.onrepeat = function () {
      console.info(_this.TAG, 'backAnimator repeat')
    }
    this.backAnimator.oncancel = function () {
      console.info(_this.TAG, 'backAnimator cancel')
    }
    this.backAnimator.onframe = function (value) {
      _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
              this.backAnimator.play()
            })
        }
        .padding(10)

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

        Row() {
          Button('finish')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              this.flag = true
              this.backAnimator.finish()
            })
        }
        .padding(10)

        Row() {
          Button('reverse')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              this.flag = false
              this.backAnimator.reverse()
            })
        }
        .padding(10)

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

        Row() {
          Button('reset')
            .fontSize(30)
            .fontColor(Color.Black)
            .onClick(() => {
              if (this.flag) {
                this.flag = false
                this.backAnimator.reset({
                  duration: 5000,
Y
yamila 已提交
449
                  easing: "ease-in",
L
liyujie 已提交
450
                  delay: 0,
Y
yamila 已提交
451 452
                  fill: "none",
                  direction: "normal",
L
liyujie 已提交
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
                  iterations: 4,
                  begin: 100,
                  end: 300
                })
              } else {
                console.info(this.TAG, 'Animation not ended')
              }
            })
        }
        .padding(10)
      }
    }
  }
}
```

Z
zhaoxinyu 已提交
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 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
## 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
L
luoying_ace_admin 已提交
516
let options = {
Z
zhaoxinyu 已提交
517
  duration: 1500,
Y
yamila 已提交
518
  easing: "friction",
Z
zhaoxinyu 已提交
519
  delay: 0,
Y
yamila 已提交
520 521
  fill: "forwards",
  direction: "normal",
Z
zhaoxinyu 已提交
522 523 524 525 526 527
  iterations: 3,
  begin: 200.0,
  end: 400.0,
};
this.animator = animator.createAnimator(options);
```