AnimationSequenceMetadata

封装一个动画序列。 由 sequence() 函数进行实例化并返回。

Encapsulates an animation sequence. Instantiated and returned by the sequence() function.

      
      interface AnimationSequenceMetadata extends AnimationMetadata {
  steps: AnimationMetadata[]
  options: AnimationOptions | null

  // 继承自 animations/AnimationMetadata
  type: AnimationMetadataType
}
    

属性

属性说明
steps: AnimationMetadata[]

一个由动画步骤对象构成的数组。

An array of animation step objects.

options: AnimationOptions | null

一个配置对象,包含一个延迟和一些由开发人员定义的参数,这些参数用于提供样式的默认值,并可在调用时重写。 默认延迟为 0。

An options object containing a delay and developer-defined parameters that provide styling defaults and can be overridden on invocation. Default delay is 0.