Angular - Animations
Why does this animation not run?
Component code toggles state between 'small' and 'large' but animation is instant.
trigger('zoom', [
state('small', style({ transform: 'scale(1)' })),
state('large', style({ transform: 'scale(1.5)' })),
transition('small <=> large', [animate('300ms')])
])Component code toggles state between 'small' and 'large' but animation is instant.
