可动画属性
定义 目标 的哪些属性可以被动画化。
可动画属性定义在 animate()
函数的参数 Object
中。
animate('.square', {
┌──────────────────┐
│ translateX: 100, │
│ scale: 2, ├─ Animatable Properties
│ opacity: .5, │
└──────────────────┘
duration: 400,
delay: 250,
ease: 'out(3)',
loop: 3,
alternate: true,
autoplay: false,
onBegin: () => {},
onLoop: () => {},
onUpdate: () => {},
});
本节内容