我有组件/对话框,可以动态添加/删除组件。 另外,我确实在输入/离开时设置了动画,因此当删除组件并添加新组件时,我想为幻灯片中的幻灯片动画。但是MatDialog内部无法正常工作。
我以为动画存在问题,但是当我将我在对话框中显示的组件插入到用Mat Dialog渲染的任何其他地方时,它起作用了。
<mat-dialog-content>
<div [@swapComponent]="getStatus()"
(@swapComponent.start)="animationStart($event)" (@swapComponent.done)="animationDone($event)"
style="display:block">
<ng-template #container>
</ng-template>
</div>
</mat-dialog-content>
在开始和完成时,我正在打印到控制台,并且那些事件甚至被称为动画都不起作用。
我正在使用@ angular / material 6.3.0
答案 0 :(得分:2)
我使用Animation Builder解决了我的问题。
constructor(private animationBuilder: AnimationBuilder){
this.openAnimation = this.animationBuilder.build([
style({
opacity: 0,
transform: 'translate3d({{offsetEnterX}}%,{{offsetEnterY}}%,0)'
}),
group([
animate('0.8s cubic-bezier(0,0,.2,1)', style({ opacity: 1 })),
animate(
'0.5s cubic-bezier(0,0,.2,1)',
style({ transform: 'translate3d(0,0,0)' })
)
])
]);
}
然后我可以播放动画
const player = this.openAnimation.create(
component.location.nativeElement,
this.getStatus()
);
player.onDone(() => {
player.destroy();
});
player.play();
问题在于,角度动画不能播放子动画,并且由于角度材质具有可以淡入/淡出模态的动画,所以模态内部的动画触发器不起作用。