Type Alias: LoopMode
LoopMode =
"none"|"loop"|"pingpong"
Defined in: animations/components/animation-component.ts:62
Controls how an animated property behaves once it reaches endValue.
'none': the animation stops and is removed.'loop':elapsedresets to0and the animation restarts fromstartValue.'pingpong':elapsedresets to0andstartValue/endValueare swapped, so the animation plays in reverse on the next iteration.