在这里查看ngx-bootstrap 源代码时:
有一个可选class property
定义为class?: string;
.
它的使用方法是什么?
是否可以添加自定义类,例如:
this.modalService.config.class = 'myClass';
在使用服务之前,例如:
this.modalRef = this.modalService.show(template, {
animated: false
});
这样,我认为我们可以将自定义 CSS 添加到显示的 modal
我试图添加一个自定义类但没有成功。
该类属性不是数组,如果适用,是否意味着我们只能添加一个自定义类?
演示:通过添加和覆盖modal
类,模式不显示
https://stackblitz.com/edit/ngx-bootstrap-3auk5l?file=app%2Fapp.component.ts
以这种方式添加modal
类没有帮助:
this.modalRef = this.modalService.show(template, Object.assign({},
this.config, { class: 'gray modal-lg modal' }));
https://stackblitz.com/edit/ngx-bootstrap-awmkrc?file=app%2Fapp.component.ts