Jquery / bootstrap模态在特定的角度5组件之上

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery / bootstrap模态在特定的角度5组件之上相关的知识,希望对你有一定的参考价值。

我在我的角度5项目中使用bootstrap模态来打开模态。但我现在这样做的方式是让模态在整个屏幕上打开,我不想发生这种情况。

这是我的角度布局代码。

<div class="wrapper">
    <div class="sidebar" data-active-color="white" data-background-color="black" data-image="../assets/img/sidebar-1.jpg">
        <!-- <div class="sidebar" data-color="red" data-image=""> -->
        <sidebar-cmp></sidebar-cmp>
        <div class="sidebar-background" style="background-image: url(assets/img/sidebar-1.jpg)"></div>
    </div>
    <div class="main-panel">
        <navbar-cmp></navbar-cmp>
        <router-outlet></router-outlet>
        <div *ngIf="!isMap()">
            <footer-cmp></footer-cmp>
        </div>
    </div>
</div>

你可以看到有sidebar组件和router-outlet,模态存在于router-outletcomponent但它仍然显示在sidebarcomponent的顶部。两个组件并排显示。

这是我在我的打字稿文件中显示模态的方式:

@ViewChild('DetailModal') detailRef: ElementRef;

$(this.detailRef.nativeElement);
$(this.detailRef.nativeElement).modal("show");

模态内容在组件的定义中:

<div>
   <!-- The definition of the Component that gets in the router-outlet-->

<div class=" container modal fade" #DetailModal>
    <app-detail-modal [Cert]="DCert"></app-detail-modal>
</div>

</div>

如何才能使模态仅显示在它所在的组件之上?

答案

您可以使用css将实际模态放在容器内,方法是使容器位置相对,并将模态容器位置设置为绝对位置

#my-modal-container {
  height:300px;
  width: 600px;
  border: 4px solid green;
  position: relative;
}

.modal {
  position: absolute;
}

然后,您可以隐藏引导覆盖并将其替换为内联覆盖。

// Hide the default backdrop
.modal-backdrop {
   display: none;
}

// Make another backdrop with styles copied from the jQuery one, and
// place it alongside your modal component
body.modal-open .inline-modal-backdrop {
    position: absolute;
    opacity: 0.5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

然后,您可以将所有这些包装在包含bs模态容器和新内联背景的角度组件中

<div class="modal"><ng-content></ng-content></div>
<div class="inline-modal-backdrop"></div>

这是一个codepen(没有角度)

https://codepen.io/anon/pen/rKvQLX

以上是关于Jquery / bootstrap模态在特定的角度5组件之上的主要内容,如果未能解决你的问题,请参考以下文章

使用 bootstrap + jQuery 重置模态数据

Bootstrap 5 模态和 jQuery 验证

带有 JQuery 和 AJAX 的 Bootstrap 4 模态?

bootstrap 4 modal-backdrop 样式(特定模态)

html 完整示例 - 在模态中自动播放youtube视频(Bootstrap + Jquery)

如何通过javascript调用带有bootstrap 5的模态窗口?