1Introduction
- description:DOM 动画
- author:ydr.me
- create:2016-04-08 21:13
- update:2016-04-08 21:13
- github:https://github.com/blearjs/blear.core.animation
2Example
var animation = require('blear.core.animation');
3Static
3.1.animate(el, to, [options], [callback]): undefined
JS 动画。如果想要高性能 CSS 动画,请使用 blear.core.transform。
3.1.1el
- 类型:
HTMLElement
- 说明:动画元素
3.1.2to
- 类型:
Object
- 说明:动画终点,可以使用
scrollTop
3.1.3options
- 类型:
Object
- 说明:动画配置
3.1.4options.easing
- 类型:
String | Array
- 说明:动画缓冲,详细参考 blear.utils.easing。
- 默认:
"linear"
3.1.5options.duration
- 类型:
Number
- 说明:动画时间,单位 ms
- 默认:
345
3.1.6callback
- 类型:
Function
- 说明:动画完成回调
- 默认:
null