Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
Say hello to Angular's future home!Check out Angular.devHome
/

AnimationStaggerMetadata

Encapsulates parameters for staggering the start times of a set of animation steps. Instantiated and returned by the stagger() function.

      
      interface AnimationStaggerMetadata extends AnimationMetadata {
  timings: string | number
  animation: AnimationMetadata | AnimationMetadata[]

  // inherited from animations/AnimationMetadata
  type: AnimationMetadataType
}
    

Properties

Property Description
timings: string | number

The timing data for the steps.

animation: AnimationMetadata | AnimationMetadata[]

One or more animation steps.