0

我想以大格式显示一个居中的 ngx-bootstrap 模态。

为此有两个类:modal-dialog-centered但是modal-lg我看不到任何方法可以同时应用这些类。

在这里查看ngx-bootstrap 源代码时:modal-options.class.ts

有一个可选class property定义为class?: string;. 但它没有定义为我们可以应用的类数组。

所以现在我可以使用以下方式显示居中的模态:

this.bsModalRef = this.modalService.show(ConfirmationComponent,
    {class: 'modal-dialog-centered', initialState});

或大模态但不居中:

this.bsModalRef = this.modalService.show(ModalConfirmationComponent,
    {class: 'modal-lg', initialState});

我尝试将其添加到模态的开始模板中:

<div class="modal-dialog modal-lg">
  <div class="modal-content">
    <div class="modal-header">
    ...

但也没有运气,班级modal-lg不想工作

任何人都知道如何让它工作?

更新

这个 CSS 看起来会给出一些结果,但表现得并不完全好:

::ng-deep .modal.show .modal-dialog {
  -webkit-transform: translate(50%, 50%);
  transform: translate(0%, 50%);
}
4

1 回答 1

1

@MikeOne 提供的建议非常有效。

因此,添加空格分隔的类将提供向模态应用多个类的能力。

我们可以使用以下代码显示完全居中且大的模态:

this.bsModalRef = this.modalService.show(ModalConfirmationComponent,
  {class: 'modal-dialog-centered modal-lg', initialState});

到目前为止,我没有看到官方文档中记录了这一点。

于 2020-08-23T08:30:36.030 回答