我正在尝试在关闭时向sweetalert2模态添加简单的css淡入淡出效果,但是它不起作用。
<swal #reqCallSwal [showConfirmButton]="false" [showCancelButton]="false" [showCloseButton]="true" [animation]="false" customClass="reqCallModalSwtOuter" (open)="modalOpened($event)" (close)="modalReset($event)">
<ng-container *swalPartial>
<div></div>
</ng-container>
</swal>
组件
modalReset(event) {
console.log('close');
event.modalElement.className='reqCallModalSwtOuter2';
}
在上面的代码中,我试图在close()中将一个类添加到模式中,但是它不会占用该类并立即关闭。任何人都可以帮助我解决此问题