尝试使用这样的ngx-boostrap modal这样的中心,但它不起作用:
.modal.fade.in{
display: flex;
justify-content: center;
align-items: center;
}
但是在开发工具中,我能够像这样添加CSS:
.modal.dialog{
top: 50%
}
所以至少它是垂直居中的,但这是在开发工具中,html template
中没有.modal.dialog
类
有没有办法正确居中ngx-bootstrap模式?
我想创建一个通用的模态组件,在任何地方使用它,提供输入消息并添加yes / no对话框并输出用户选择(使用EventEmitter)
我在以下Plunker中找到了一个示例,但无法在单独的自定义组件中重现它。
这个网站的例子来自这个网站:https://github.com/valor-software/ngx-bootstrap/issues/2334
更新
在@Wira Xie回答之后,我使用Static modal和这个CSS:
.modal-sm
{
top: 50%;
left: 50%;
width:30em;
height:18em;
background-color: rgba(0,0,0,0.5);
}
模态显示居中,但只有Esc key
可以隐藏它,所以当我点击模态外,它仍然可见。
答案 0 :(得分:7)
尝试将此属性添加到您的CSS:vertical-align: middle
到您的.modal.dialog
类
.modal.fade {
display: flex !important;
justify-content: center;
align-items: center;
}
.modal-dialog {
vertical-align:middle;
height:18em;
background-color: rgba(0,0,0,0.5);
}
答案 1 :(得分:5)
为什么不使用引导List<String> list = List.of("a", "b", "c");
类:
modal-dialog-centered
答案 2 :(得分:4)
.ts文件中的代码如下(打开模式弹出窗口)...
private showModal(template: TemplateRef<any>): BsModalRef {
return this.modalService.show(template, {class: 'modal-lg modal-dialog-centered', ignoreBackdropClick: true, keyboard: false});
}
您可以看到我已将modal-dialog-centered添加到该类中。完成此操作后,您还可以在CSS中修改以modal-dialog为中心的类。
答案 3 :(得分:2)
您需要使用bootstrap class。
在
.modal-dialog-centered
上添加.modal-dialog
,以使模态垂直居中。
import { Component, OnInit, TemplateRef } from '@angular/core';
import { BsModalService } from 'ngx-bootstrap/modal';
import { BsModalRef } from 'ngx-bootstrap/modal/bs-modal-ref.service';
@Component({
...
})
export class ModalComponent {
modalRef: BsModalRef;
// Here we add another class to our (.modal.dialog)
// and we need to pass this config when open our modal
config = {
class: 'modal-dialog-centered'
}
constructor(private modalService: BsModalService) { }
openModal(template: TemplateRef<any>) {
// pass the config as second param
this.modalRef = this.modalService.show(template, this.config);
}
}
答案 4 :(得分:1)
您必须像这样传递In [4]: def run_code():
...: code = """
...: def foo():
...: print('foo')
...: return 1
...:
...: def bar():
...: print('bar calls foo')
...: return 1 + foo()
...:
...: result = bar()
...: """
...: namespace = {}
...: exec(code, namespace)
...: print('Result: {}'.format(namespace['result']))
...:
In [5]: run_code()
bar calls foo
foo
Result: 2
函数的modal-dialog-centered
引导程序类:
BsModalService.show()
注意:如果需要传递初始数据,则可以使用 const initialState = {
organization: organization,
};
this.modalRef = this.modalService.show(AdminOrganizationCreateComponent, {
class: 'modal-dialog-centered', initialState
});
对象传递它。
答案 5 :(得分:0)
根据documentation,您可以通过将centered属性设置为true(默认情况下为false)将模式垂直居中
const modalRef = this.modalService.open(ConfirmationDialogComponent, {
size: dialogSize,
centered: true
});
答案 6 :(得分:0)
我在模态中添加了mat-step
,因此它没有为modal-dialog-centered
引导类以太对齐。但是modal-lg
类对我有用。示例代码与接受的答案非常相似。仅更改传递给模式的引导程序类。
this.modalRef = this.modalService.show(AddDevelopersGroupComponent,{
class: 'modal-lg',
initialState,
});
答案 7 :(得分:0)
有点晚,但供参考。
组件中对话框的样式不起作用的原因是因为组件样式是孤立的并且仅限于组件内的元素。通过 bsmodalservice 创建的对话框在这个组件之外。 (直接在 <body>
下)。
因此,虽然您的样式封装在组件和一些随机标识符中,但对话框本身不是。最终的 css(如 mycomponent[_ngcontent_bla_323] .modal
)不适用于服务添加的 div.modal。
可能的解决方案是:
答案 8 :(得分:-1)
这是我个人项目中使用ngx-bootstrap的片段。
.modal-sm
{
top: 50%;
left: 50%;
width:30em;
height:18em;
margin-top: -9em;
margin-left: -15em;
background-color: #001b00;
/*position:fixed;*/
}
&#13;
<!--typecript files-->
<script>
//here is the typesciprt file
export class AppComponent
{
//for default ngx-bootstrap modal
public modalRef: BsModalRef;
constructor(private modalService: BsModalService) {}
public openModal(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template);
}
}
</script>
<!--end of ts file-->
<!--Modal-->
<div class="container">
<div bsModal #smModal="bs-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title pull-left">Small modal</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="smModal.hide()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
</div>
</div>
</div>
</div>
<!--enf of modal-->
&#13;