query
function
Finds one or more inner elements within the current element that is
being animated within a sequence. Use with animate()
.
API
Usage Notes
function query( selector: string, animation: AnimationMetadata | AnimationMetadata[], options?: AnimationQueryOptions | null): AnimationQueryMetadata;
Finds one or more inner elements within the current element that is
being animated within a sequence. Use with animate()
.
@paramselector
string
The element to query, or a set of elements that contain Angular-specific characteristics, specified with one or more of the following tokens.
query(":enter")
orquery(":leave")
: Query for newly inserted/removed elements (not all elements can be queried via these tokens, see Entering and Leaving Elements)query(":animating")
: Query all currently animating elements.query("@triggerName")
: Query elements that contain an animation trigger.query("@*")
: Query all elements that contain an animation triggers.query(":self")
: Include the current element into the animation sequence.
@paramanimation
AnimationMetadata | AnimationMetadata[]
One or more animation steps to apply to the queried element or elements. An array is treated as an animation sequence.
@paramoptions
AnimationQueryOptions | null
An options object. Use the 'limit' field to limit the total number of items to collect.
@returns
AnimationQueryMetadata
Jump to details