keyframeslink
Defines a set of animation styles, associating each style with an optional offset
value.
可定义一组动画样式,每个样式都关联着一个可选的 offset
值。
参数
steps | A set of animation styles with optional offset data. The optional 一组带有可选的偏移(offset)数据的动画样式。 这个可选的 |
返回值
AnimationKeyframesSequenceMetadata
: An object that encapsulates the keyframes data.
一个封装关键帧数据的对象。
使用说明
Use with the animate()
call. Instead of applying animations from the current state to the destination state, keyframes describe how each style entry is applied and at what point within the animation arc. Compare CSS Keyframe Animations.
和 animate()
调用一起使用。关键帧动画不会直接在当前状态和目标状态之间应用动画,而是描述在动画弧线的哪个时间点上应用哪个样式。 详情参见 CSS 关键帧动画。
Usage
用法
In the following example, the offset values describe when each backgroundColor
value is applied. The color is red at the start, and changes to blue when 20% of the total time has elapsed.
下面的例子中,偏移值描述了每个 backgroundColor
值应该何时应用上去。开始时的颜色是红色,在总时间的 20% 处变为蓝色。
If there are no offset
values specified in the style entries, the offsets are calculated automatically.
如果没有指定 offset
值,则会自动计算偏移量。