如何禁用 ngx-bootstrap 模态动画?
How to disable ngx-bootstrap modal animation?
有没有办法为 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
});
有没有办法为 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
});