我有一个 ASP.NET 应用程序,我想要一个带有 div 的效果。如果我将鼠标悬停在 div 上,则希望此不透明度为 0.9,如果我将鼠标悬停,则希望不透明度为 0.6。我使用两个 div。一个 div 在另一个 div 中,在此我使用控件。
如果我的鼠标不在 div 中:
如果我的鼠标在 div 中:
我的代码:
<asp:Content ID="Content2" ContentPlaceHolderID="lw_content" runat="server">
<div class="createuser">
<div class="create_box">
<div class="newUser">
Benutzer Anlegen <br/>
<br/>
<table>
...
</table>
<br/>
<asp:Button ID="btnAnlegen" runat="server" Text="Benutzer anlegen"
onclick="btnAnlegen_Click" />
</div>
</div>
</div>
</asp:Content>
我的 CSS:
div.createuser {
background-image: url(../images/bg_createuser.jpg);
filter:alpha(opacity=50);
width: 1000px;
height: 450px;
z-index: n;
}
div.create_box {
width:400px;
height:350px;
margin:30px 100px;
background-color:#ffffff;
border:1px solid black;
opacity:0.6;
filter:alpha(opacity=60); /* For IE8 and earlier */
}
div.newUser {
margin:30px 40px;
font-weight:bold;
color:#000000;
font-size: small;opacity:1.0;
filter:alpha(opacity=100); /* For IE8 and earlier */
}
我在我的 div.createuser 中有一个图像作为背景,不透明度为 0.7