Is there any way I can "disable" Angular animations until certain event?
For example, I have a listbox with some items. Each item has an animation like this:
<div class="list--item" [@animFadeOut]>
[ ... ]
</div>
To avoid visual overload, I'd like that this animation would be played only when a new item is added, not when the list is loaded and populated with all the items.
What would be a good way of achieving this effect?
Thanks,