network request to http://sdpsvalmbf.rete.testposte:8085/nexus/repository/caat-pub-pvt/@angular%2 animations failed code example
Example: angular transition animation
content_copy
animations: [
trigger('openClose', [
state('true', style({ height: '*' })),
state('false', style({ height: '0px' })),
transition('false <=> true', animate(500))
])
],