Help Angular by taking a 1 minute survey!Go to surveyHome

AnimationMetadataType

Constants for the categories of parameters that can be defined for animations.

See more...

      
      
  1. enum AnimationMetadataType {
  2. State: 0
  3. Transition: 1
  4. Sequence: 2
  5. Group: 3
  6. Animate: 4
  7. Keyframes: 5
  8. Style: 6
  9. Trigger: 7
  10. Reference: 8
  11. AnimateChild: 9
  12. AnimateRef: 10
  13. Query: 11
  14. Stagger: 12
  15. }

Description

A corresponding function defines a set of parameters for each category, and collects them into a corresponding AnimationMetadata object.

Members

Member Description
State: 0

Associates a named animation state with a set of CSS styles. See state()

Transition: 1

Data for a transition from one animation state to another. See transition()

Sequence: 2

Contains a set of animation steps. See sequence()

Group: 3

Contains a set of animation steps. See group()

Animate: 4

Contains an animation step. See animate()

Keyframes: 5

Contains a set of animation steps. See keyframes()

Style: 6

Contains a set of CSS property-value pairs into a named style. See style()

Trigger: 7

Associates an animation with an entry trigger that can be attached to an element. See trigger()

Reference: 8

Contains a re-usable animation. See animation()

AnimateChild: 9

Contains data to use in executing child animations returned by a query. See animateChild()

AnimateRef: 10

Contains animation parameters for a re-usable animation. See useAnimation()

Query: 11

Contains child-animation query data. See query()

Stagger: 12

Contains data for staggering an animation sequence. See stagger()