即使在关闭模态后,ngx bootstrap模态也不会淡出

时间:2017-09-27 20:41:09

标签: twitter-bootstrap angular

嘿试图在angular2中使用模态,但是当我试图关闭模态时,模态关闭但是渐弱没有去。 的成分

  <button class="btn btn-primary btn-raised" (click)="openDaysModal()">Days Calculator</button>
  public openDaysModal() {

    this.bsModalRef = this.modalService.show(DaysCalcComponent, this.config);
  }

MOdalComponent  关闭它

<button type="button" class="close pull-right" aria-label="Close" (click)="bsModalRef.hide()">
                        <span aria-hidden="true">&times;</span>
                    </button>

1 个答案:

答案 0 :(得分:0)

你需要使用角度动画来触发这种淡出动画。 供参考:angular2 animation

相关问题