0

我正在尝试在半透明 div 上显示一个小的白色 div(这是 100% 的页面和 0.6 的不透明度)

分区:

<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" />&nbsp;
<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%),并且它的背景仍然显示为透明而不是白色!

4

3 回答 3

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 上的背景图像

于 2013-07-31T09:40:24.333 回答
0

设置margin-leftmargin-top以将 div 置于中心。此外,您将两个 div 的背景设置为白色。请将第一个 div 的背景设置为透明。例如:

margin-left: 20%;
margin-top: 20%;
于 2013-07-31T09:35:02.637 回答
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" />&nbsp;
            <asp:Button ID="BtnNo" runat="server" Text="Cancel" onclick="BtnNo_Click" />
        </div>
    </td>
    </tr>
</table>
</div>

至于不透明的问题。第一个 div,您想要更改背景颜色的不透明度,而不是实际的不透明度。因为实际的不透明度也会影响子控件。

background: rgba(255,255,255,0.6);

删除 opacity:1 后为顶部 div 添加上述内容;

于 2013-07-31T09:54:56.803 回答