我试图在button点击时有一个微调动画。当没有 Bootstrap Modal Open 时,这在页面上工作正常。但是当 Bootstrap Modal 打开时,Spinner 隐藏在 Bootstrap Modal 后面我试过这个期望 Spinner 高于 Modal Bootstrap
3 回答
翻阅古今
TA贡献1780条经验 获得超5个赞
你必须给z-indexLoading Spinner 一个比 Modal更大的z-index.
让我们试试这个:
#loadingoverlay {
position: fixed;
top: 0;
z-index: 9999;
width: 100%;
height: 100%;
display: none;
background: rgba(0,0,0,0.6);
}
添加回答
举报
0/150
提交
取消