js-apis-basic-features-animator.md 6.2 KB
Newer Older
Z
zengyawen 已提交
1
# 动画
Z
zengyawen 已提交
2

Z
zengyawen 已提交
3 4
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
5

Z
zengyawen 已提交
6 7

## 导入模块
Z
zengyawen 已提交
8 9 10 11 12 13 14 15 16 17 18

requestAnimationFrame:无需导入

cancelAnimationFrame:无需导入

createAnimator:

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

Z
zengyawen 已提交
19
## 权限列表
Z
zengyawen 已提交
20 21 22 23




Z
zengyawen 已提交
24 25 26
## requestAnimationFrame

requestAnimationFrame(handler[, [ ...args]]): number
Z
zengyawen 已提交
27 28 29

请求动画帧,逐帧回调JS函数。

Z
zengyawen 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
- 参数
  | 参数名 | 类型 | 必填 | 说明 |
  | -------- | -------- | -------- | -------- |
  | handler | Function | 是 | 表示要逐帧回调的函数。requestAnimationFrame函数回调handler函数时会在第一个参数位置传入timestamp时间戳。它表示requestAnimationFrame开始去执行回调函数的时刻。 |
  | ...args | Array<any> | 否 | 附加参数,函数回调时,他们会作为参数传递给handler。 |

- 返回值
  | 类型 | 说明 |
  | -------- | -------- |
  | number | requestID请求的ID。 |

- 示例
  ```
  <!-- xxx.hml -->
  <div class="container">
    <button type="capsule" class="btn" onclick="beginAnimation">beginAnimation</button>
  </div>
  ```

  ```
  /* xxx.css */
  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .btn{
    width: 300px;
    margin-top: 40px;
  }
  ```

  ```
  /* xxx.js */
  export default {
    data: {
      requestId: 0,
      startTime: 0,
    },
    beginAnimation() {
      cancelAnimationFrame(this.requestId);
      this.requestId = requestAnimationFrame(this.runAnimation);
    },
    runAnimation(timestamp) {
      if (this.startTime == 0) {
        this.startTime = timestamp;
      }
      var elapsed = timestamp - this.startTime;
      if (elapsed < 500) {
        console.log('callback handler timestamp: ' + timestamp);
Z
zengyawen 已提交
82 83 84
        this.requestId = requestAnimationFrame(this.runAnimation);
      }
    }
Z
zengyawen 已提交
85 86
  }
  ```
Z
zengyawen 已提交
87 88


Z
zengyawen 已提交
89
## cancelAnimationFrame
Z
zengyawen 已提交
90

Z
zengyawen 已提交
91
cancelAnimationFrame(requestId: number): void
Z
zengyawen 已提交
92 93 94

取消动画帧,取消逐帧回调请求。

Z
zengyawen 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
- 参数
  | 参数名 | 类型 | 必填 | 说明 |
  | -------- | -------- | -------- | -------- |
  | requestId | number | 是 | 逐帧回调函数的标识id。 |

- 示例
  ```
  <!-- xxx.hml -->
  <div class="container">
    <button type="capsule" class="btn" onclick="beginAnimation">beginAnimation</button>
    <button type="capsule" class="btn" onclick="stopAnimation">stopAnimation</button>
  </div>
  ```

  ```
  /* xxx.css */
  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .btn{
    width: 300px;
    margin-top: 40px;
  }
  ```

  ```
  /* xxx.js */
  export default {
    data: {
      requestId: 0,
      startTime: 0,
    },
    beginAnimation() {
      cancelAnimationFrame(this.requestId);
      this.requestId = requestAnimationFrame(this.runAnimation);
    },
    runAnimation(timestamp) {
      if (this.startTime == 0) {
        this.startTime = timestamp;
      }
      var elapsed = timestamp - this.startTime;
      if (elapsed < 500) {
        console.log('callback handler timestamp: ' + timestamp);
Z
zengyawen 已提交
142 143
        this.requestId = requestAnimationFrame(this.runAnimation);
      }
Z
zengyawen 已提交
144 145 146
    },
    stopAnimation() {
      cancelAnimationFrame(this.requestId);
Z
zengyawen 已提交
147
    }
Z
zengyawen 已提交
148 149
  }
  ```
Z
zengyawen 已提交
150 151


Z
zengyawen 已提交
152
## createAnimator
Z
zengyawen 已提交
153

Z
zengyawen 已提交
154
createAnimator(options[...]): void
Z
zengyawen 已提交
155 156 157

创建动画对象。

Z
zengyawen 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
- 参数
  | 参数名 | 类型 | 必填 | 说明 |
  | -------- | -------- | -------- | -------- |
  | options | Object | 是 | 表示待创建Animator对象的属性,详情见下表options说明。 |

- options说明
  | 参数名 | 类型 | 必填 | 说明 |
  | -------- | -------- | -------- | -------- |
  | duration | number | 否 | 动画播放的时长,单位毫秒,默认为0。 |
  | easing | string | 否 | 动画插值曲线,默认为'&nbsp;ease&nbsp;'。 |
  | delay | number | 否 | 动画延时播放时长,单位毫秒,默认为0,即不延时。 |
  | fill | string | 否 | 动画启停模式,默认值none,详情见:[animation-fill-mode](../arkui-js/js-components-common-animation.md) |
  | direction | string | 否 | 动画播放模式,默认值normal,详情见:[animation-direction](../arkui-js/js-components-common-animation.md) |
  | iterations | number | 否 | 动画播放次数,默认值1,设置为0时不播放,设置为-1时无限次播放。 |
  | begin | number | 否 | 动画插值起点,不设置时默认为0。 |
  | end | number | 否 | 动画插值终点,不设置时默认为1。 |

- animator支持的接口
  | 参数名 | 类型 | 说明 |
  | -------- | -------- | -------- |
  | update | options | 过程中可以使用这个接口更新动画参数,入参与createAnimator一致。 |
  | play | - | 开始动画。 |
  | finish | - | 结束动画。 |
  | pause | - | 暂停动画。 |
  | cancel | - | 取消动画。 |
  | reverse | - | 倒播动画。 |

- animator支持的事件:
  | 参数名 | 类型 | 说明 |
  | -------- | -------- | -------- |
  | frame | number | 逐帧插值回调事件,入参为当前帧的插值 |
  | cancel | - | 动画被强制取消 |
  | finish | - | 动画播放完成 |
  | repeat | - | 动画重新播放 |

- 示例
  ```
  <!-- hml -->
  <div class="container">
    <div class="Animation" style="height: {{divHeight}}px; width: {{divWidth}}px; background-color: red;" onclick="Show">
Z
zengyawen 已提交
198
    </div>
Z
zengyawen 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
  </div>
  ```

  ```
  // js
  export default {
    data : {
      divWidth: 200,
      divHeight: 200,
      animator: null
    },
    onInit() {
      var options = {
        duration: 1500,
        easing: 'friction',
        fill: 'forwards',
        iterations: 2,
        begin: 200.0,
        end: 400.0
      };
      this.animator = animator.createAnimator(options);
    },
    Show() {
      var options1 = {
        duration: 2000,
        easing: 'friction',
        fill: 'forwards',
        iterations: 1,
        begin: 200.0,
        end: 400.0
      };
      this.animator.update(options1);
      var _this = this;
      this.animator.onframe = function(value) {
        _this.divWidth = value;
        _this.divHeight = value;
      };
      this.animator.play();
Z
zengyawen 已提交
237
    }
Z
zengyawen 已提交
238 239
  }
  ```