I was able to run animation in the application but I'm trying with no success to animate slide out, I've tried the following:
animations: [
trigger('slideOut', [
transition ('* => void', [
animate('1000ms ease-out',
style({ transform: 'translateY(200%)' })
)
])
Nothing is moving. I need actually the height to be zero but this example is just not moving as well. This should be animate an info message from display to disappearing. Thanks.