Angular 2 애니메이션 - 부울 트리거? 부울 속성에 바인딩된 전환을 트리거하려고 하지만 실행되지 않는 것 같습니다. 다음은 애니메이션 트리거의 축소 버전입니다. trigger( 'trueFalseAnimation', [ transition('* => true', [ style({backgroundColor: '#00f7ad'}), animate('2500ms', style({backgroundColor: '#fff'})) ]), transition('* => false', [ style({backgroundColor: '#ff0000'}), animate('2500ms', style({backgroundColor: '#fff'})) ]) ] ) HTML: Content here 테스트 대상: ng..