我试图在半透明div上显示一个小的白色div(页面的100%和0.6的不透明度)
Divs:
<div id="confirmDialogSingle" class="Loading" runat="server" visible="false">
<div id="msgBox" class="loadingImg">
<br /> You already have a request on the chosen date. Are you sure you want to submit this request?<br /><br />
<asp:Button ID="BtnConfirmSingle" runat="server" Text="Yes" Width="60px" onclick="BtnConfirmSingle_Click" />
<asp:Button ID="BtnNo" runat="server" Text="Cancel" onclick="BtnNo_Click" />
</div>
</div>
CSS:
.Loading
{
width: 100%;
height: 100%;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
position: fixed;
background: white;
opacity:0.6;
z-index:9999;
transition: width 2s; -moz-transition: width 2s;/* Firefox 4 */ -webkit-transition: width 2s; /* Safari and Chrome */ -o-transition: width 2s; /* Opera */
}
.loadingImg
{
opacity: 1;
margin: auto;
width: 700px;
text-align: center;
height: 150px;
padding: 10px;
background-color: white;
border:1px solid #d9a0e2;
}
问题是小div(.loadingImg)没有显示在屏幕的中央(也尝试了前50%并且留下了50%)并且它的背景仍然显示为透明而不是白色!
答案 0 :(得分:2)
试试这个:
.Loading {
position:fixed;
width:100%; height:100%;
top:0; left:0;
background: rgba(255,255,255,0.6);
z-index:9999;
transition: width 2s; -moz-transition: width 2s;/* Firefox 4 */ -webkit-transition: width 2s; /* Safari and Chrome */ -o-transition: width 2s; /* Opera */ }
.loadingImg {
position: absolute;
top: 50%; margin-top:-85px;
left:50%; margin-left:-360px;
width:700px; height:150px;
opacity: 1;
text-align: center;
padding: 10px;
background-color: #FFF;
border: 1px solid #d9a0e2;
}
或者,您可以使用半透明png图像作为.Loading div
上的背景图像答案 1 :(得分:0)
设置 margin-left 和 margin-top 以将div置于中心位置。你也将div的背景设置为白色。请将第一个div的背景设置为透明。 例如:
margin-left: 20%;
margin-top: 20%;
答案 2 :(得分:0)
以下代码可以帮助您获得屏幕中心的第二个div。
<div id="confirmDialogSingle" class="Loading" runat="server" visible="false">
<table style="height:100%;" align="center">
<tr>
<td>
<div id="msgBox" class="loadingImg">
<br /> You already have a request on the chosen date. Are you sure you want to submit this request?<br /><br />
<asp:Button ID="BtnConfirmSingle" runat="server" Text="Yes" Width="60px" onclick="BtnConfirmSingle_Click" />
<asp:Button ID="BtnNo" runat="server" Text="Cancel" onclick="BtnNo_Click" />
</div>
</td>
</tr>
</table>
</div>
至于不透明度问题。第一个div,您想要更改背景颜色的不透明度而不是实际的不透明度。因为实际的不透明度也会影响子控件。
background: rgba(255,255,255,0.6);
删除不透明度后,在上面的div中添加以上内容:1;