添加动画

动画可以使用 add() 方法或 sync() 方法添加到时间线。

动画创建

使用 add() 方法直接创建动画并添加到时间线。
这允许 tween 值与时间线现有子项组合。

timeline.add(targets, parameters, position);

参数

名称 接受
目标 目标
参数 一个 Object 包含 可动画属性, Tween 参数, 播放设置动画回调
position (可选) 时间位置

动画同步

使用 sync() 方法同步现有动画。
Tween 值组合在创建动画时处理,添加后不会影响时间线现有子项。

const animation = animate(target, { x: 100 });

timeline.sync(animation, position);

参数

名称 接受
动画 动画
position (可选) 时间位置

返回

时间线本身

可以与其他时间线方法链式调用。

添加动画代码示例

import { createTimeline, animate } from 'animejs';

const circleAnimation = animate('.circle', {
  x: '15rem'
});

const tl = createTimeline()
.sync(circleAnimation)
.add('.triangle', {
  x: '15rem',
  rotate: '1turn',
  duration: 500,
  alternate: true,
  loop: 2,
})
.add('.square', {
  x: '15rem',
});
<div class="large row">
  <div class="medium pyramid">
    <div class="triangle"></div>
    <div class="square"></div>
    <div class="circle"></div>
  </div>
</div>