水平步进动画

时间:2019-07-03 18:29:11

标签: angular angular-material2 angular-animations mat-stepper

告诉我如何更改MatHorizo​​ntalStepper组件的标准过渡动画。

我尝试使用

animations: [
trigger('verticalStepTransition', [
  state('previous', style({height: '0px', visibility: 'hidden'})),
  state('next', style({height: '120px', visibility: 'hidden'})),
  state('current', style({height: '*', visibility: 'visible'})),
  transition('* <=> current', animate('.3s'))
])

但没有任何变化

也许我应该更改模板中的某些内容,但是在哪里

0 个答案:

没有答案