Answers for "angular transition animation"

1

angular transition animation

content_copy
      
      animations: [
  trigger('openClose', [
    state('true', style({ height: '*' })),
    state('false', style({ height: '0px' })),
    transition('false <=> true', animate(500))
  ])
],
Posted by: Guest on April-21-2020

Code answers related to "angular transition animation"

Code answers related to "Javascript"

Browse Popular Code Answers by Language