使用ngx-bootstrap modalService时添加自定义类的方法

时间:2017-12-24 00:00:40

标签: css angular ngx-bootstrap ngx-bootstrap-modal

在这里查看ngx-bootstrap source code

modal-options.class.ts

可选的class property定义为class?: string;

使用它的方法是什么?

是否可以添加自定义类,如:

this.modalService.config.class = 'myClass';

在使用servive之前,例如:

this.modalRef = this.modalService.show(template, {
  animated: false
});

这样,我认为我们可以将自定义CSS添加到显示的模态

我试图添加自定义类但没有成功。

该类属性不是数组,如果适用,是否意味着我们只能添加一个自定义类?

演示:通过添加和覆盖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

1 个答案:

答案 0 :(得分:7)

根据关于Modal组件的ngx-bootstrap documentation(请参阅组件选项卡),您可以将class成员添加到配置对象。

重要:由于模态元素位于呈现HTML中的组件元素之外,因此应该为组件关闭CSS封装,或者应该在另一个中指定类的样式属性文件,以确保将样式应用于模态元素。

下面的代码段可以在this stackblitz中执行。

import { Component, TemplateRef, ViewEncapsulation } from '@angular/core';
import { BsModalService, BsModalRef } from 'ngx-bootstrap';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css'],
  encapsulation: ViewEncapsulation.None
})
export class AppComponent {
  modalRef: BsModalRef;
  config = {
    animated: true,
    keyboard: true,
    backdrop: true,
    ignoreBackdropClick: false,
    class: "my-modal"
  };

  constructor(private modalService: BsModalService) { }

  openModal(template: TemplateRef<any>) {
    this.modalRef = this.modalService.show(template, this.config);
  }
}

使用这样的CSS文件:

.my-modal {
  border: solid 4px blue;
}

.my-modal .modal-header {
  background-color: lime;
}

.my-modal .modal-body {
  background-color: orange;
}

更新:此other stackblitz显示了从外部文件导入styles.css的CSS样式示例,允许将CSS封装保留在组件中。