0

有没有办法禁用ngx-bootstrap modal 的动画?

我尝试添加此配置,但它不起作用:

config = {
  animated: false,
  backdrop: 'static'
};

演示:

https://stackblitz.com/edit/ngx-bootstrap-cwfhnu?file=app%2Fmodal-component%2Fstatic-modal.component.html

模态仍然显示动画。

因为在某些情况下,模式在更复杂的网页中使用时显示非常慢(例如单击后 2 秒),因此禁用动画可能会更好。

4

1 回答 1

5

现在您只能在使用 BsModalService 时禁用动画。

这是它的用法示例:

https://stackblitz.com/edit/ngx-bootstrap-k25ywj?file=app/app.component.ts

this.modalService.show(template, {
   animated: false
});
于 2017-12-20T12:33:25.773 回答