angular transition animation

JavaScript
      
        content_copy
      
      animations: [
  trigger('openClose', [
    state('true', style({ height: '*' })),
    state('false', style({ height: '0px' })),
    transition('false <=> true', animate(500))
  ])
],
    
Source

Also in JavaScript: