gpt4 book ai didi

javascript - 模态重叠内容并使内容在 Bootstrap 中不可点击?

转载 作者:行者123 更新时间:2023-12-02 21:30:22 24 4
gpt4 key购买 nike

我制作了一个显示在页脚中的模态,但是当模态出现时,它会与整个 div 重叠,并使侧边栏不可单击。

代码如下:

<footer>     
<div class="modal custom show" id="trackModal" role="dialog" aria-labelledby="trackModalLabel" aria-hidden="false">
<div class="modal-dialog" id="popup">
<div class="modal-content">
<img id="popclose" src="~/Content/MediaCenter/assets/images/cookies.jpg">
</div>
</div>
</div>
<footer>

这是CSS

div#popup {
left: 18%;
}
div#trackModal {
z-index: 1049;
}

.modal.custom .modal-dialog {
position: fixed;
bottom: 0;
right: 0;
margin: 0;
content: "";
width: 130%;
display: none;
}

我尝试过可见性:隐藏overflow-x:autooverflow-y:auto。但结果还是一样。

请问有人可以帮忙吗?

最佳答案

对模型使用 Z-index 属性,如下所示:

   .modal.custom .modal-dialog {
position: fixed;
bottom: 0;
right: 0;
margin: 0;
content: "";
width: 130%;
display: none;
z-index: -1;
}

现在,侧边栏将位于模型的前面。尝试一下。

关于javascript - 模态重叠内容并使内容在 Bootstrap 中不可点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60636612/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com