On this page
sequence
function
Defines a list of animation steps to be run sequentially, one by one.
sequence(steps: AnimationMetadata[], options: AnimationOptions = null): AnimationSequenceMetadata
Parameters
steps |
AnimationMetadata[] |
An array of animation step objects.
|
options |
AnimationOptions |
An options object containing a delay and developer-defined parameters that provide styling defaults and can be overridden on invocation. Optional. Default is |
Returns
AnimationSequenceMetadata
: An object that encapsulates the sequence data.
Usage notes
When you pass an array of steps to a transition()
call, the steps run sequentially by default. Compare this to the group()
call, which runs animation steps in parallel.
When a sequence is used within a group()
or a transition()
call, execution continues to the next instruction only after each of the inner animation steps have completed.
© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v14.angular.io/api/animations/sequence