import {Component, trigger, state, animate, transition, style} from '@angular/core'; @Component({ selector: "animate-cmp", animations: [ trigger('openClose', [ state('closed, void', style({ height:"0px", color: "maroon", borderColor: "maroon" })), state('open', style({ height:"*", borderColor:"green", color:"green" })), transition("* => *", animate(500)) ]) ], template: `