14

在这里查看ngx-bootstrap 源代码时:

modal-options.class.ts

有一个可选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

4

1 回答 1

15

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

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

下面的代码片段可以在这个 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;
}

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

于 2017-12-24T00:56:20.863 回答