为什么动画在Angular 5应用中不起作用?

时间:2019-06-13 06:34:13

标签: angular angular-animations

我正在尝试在Angular 5应用中开发第一个动画,但它不起作用。 到目前为止,我已经完成的详细操作:

  1. app.module.ts
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

@NgModule({
   imports: [
      BrowserModule,
      ...
      BrowserAnimationsModule,
      ...

在我的组件中:

import { trigger,style,transition,animate,keyframes,query,stagger } from '@angular/animations';

animations: [

      trigger('slideOut', [
          transition('* => void', [
            style({height: '*'}),
            animate('2000ms ease-out', style({height: 0})),
          ])
        ])

    ]

这是模板:

 <div [@slideOut] class="alert alert-success alert-dismissible fade in" role="alert">
    <button type="button" class="close"><span aria-hidden="true">&times;</span></button>
        <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
    All is good!
</div>

知道我在这里缺少什么吗?我需要安装一些东西吗?

0 个答案:

没有答案