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