有没有办法禁用ngx-bootstrap modal 的动画?
我尝试添加此配置,但它不起作用:
config = {
animated: false,
backdrop: 'static'
};
演示:
模态仍然显示动画。
因为在某些情况下,模式在更复杂的网页中使用时显示非常慢(例如单击后 2 秒),因此禁用动画可能会更好。
有没有办法禁用ngx-bootstrap modal 的动画?
我尝试添加此配置,但它不起作用:
config = {
animated: false,
backdrop: 'static'
};
演示:
模态仍然显示动画。
因为在某些情况下,模式在更复杂的网页中使用时显示非常慢(例如单击后 2 秒),因此禁用动画可能会更好。
现在您只能在使用 BsModalService 时禁用动画。
这是它的用法示例:
https://stackblitz.com/edit/ngx-bootstrap-k25ywj?file=app/app.component.ts
this.modalService.show(template, {
animated: false
});