如何在角度5中关闭时在sweetalert2模态中添加淡入淡出效果

时间:2018-06-28 14:06:17

标签: angular5 sweetalert2

我正在尝试在关闭时向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()中将一个类添加到模式中,但是它不会占用该类并立即关闭。任何人都可以帮助我解决此问题

0 个答案:

没有答案