如何禁用ngx-bootstrap模态动画?

HDJ*_*MAI 0 animation ngx-bootstrap angular ngx-bootstrap-modal disable

有没有一种方法可以禁用ngx-bootstrap模态的动画?

我尝试添加此配置,但无法正常工作:

config = {
  animated: false,
  backdrop: 'static'
};
Run Code Online (Sandbox Code Playgroud)

演示:

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

该模态仍显示动画。

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

Ily*_*may 5

现在,仅当使用BsModalService时,才能禁用动画。

这是一个用法示例:

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

this.modalService.show(template, {
   animated: false
});
Run Code Online (Sandbox Code Playgroud)