您好,我已经下载了LeanModal,但每当我显示模态时,叠加层似乎都适用于模态本身。
我认为它是一个z-index修复程序,但似乎(在查看chrome dev工具时)是通过leanmodal在事实之后应用z-index,并忽略了CSS。
#lean_overlay {
position: fixed;
z-index: 100;
top: 0px;
left: 0px;
height:100%;
width: 100%;
background: #000;
display: none;
}
// can't get it to sit above the overlay
#popup {
z-index: 150; // it looks like it's being overwritten in dev tools
width: 600px;
padding: 30px;
display: none;
background: #FFF;
}
$("#i").leanModal();
其他人遇到这个? 感谢