gpt4 book ai didi

html - 具有不透明度值的悬停背景和具有不同不透明度值的悬停按钮

转载 作者:可可西里 更新时间:2023-11-01 13:42:40 32 4
gpt4 key购买 nike

我在应用 hover 时面临简单的问题,我的意思是我想悬停盒子,盒子的不透明度应该是 0.3 ,盒子里面的按钮应该是不透明度 (1)。所以我尝试应用这个任务,但没有成功。

将鼠标悬停在框上时,框的不透明度应为 0.3,框内的按钮的不透明度应为 (1)。

body {
margin: .5em;
padding: 0;
height: 100%;
background-color: #E8E8E8;
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: .9em;
direction: rtl;
}

#cell_1 {
margin: 0 -3px 1em 0;
padding: 8px;
float: right;
width: 61%;
height: 100px;
border-radius: 0px 20px 0px 0px;
position: relative;
background-color: #9BBB59;
height: 100px;
}

.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}

#cell_1:hover {
opacity: 0.3;
}

#cell_1:hover .middle {
opacity: 1;
}

.text {
background-color: #4CAF50;
color: white;
font-size: 16px;
padding: 16px 32px;
}
<form id="form1" runat="server">
<!--//end #postHeader//-->
<div id="centerColumn">
<!--//end #navbar//-->
<div id="header" style="text-align:right">
<asp:Image ID="Image1" runat="server" ImageUrl="~/APP_EOM/EO/Hed2.png" Width="100%" />
</div>
<!--//end #headern//-->
<br />
<br />
<br />
<br />
<br />
<br />
<h2>&nbsp;</h2>
<h2>&nbsp;</h2>
<h2> heading 2:</h2>
<p style="font-size:15px; line-height:1.5em; font-weight:normal">
testiest test teset teset
</p>
<!-- Start Cell_1 -->
<div id="cell_1" dir="rtl">
<h2>????? ???????</h2>
<p style="font-size:14px; font-weight:normal"> ABCDEFG .</p>
<p> </p>
<div class="middle">
<asp:Button ID="Button1" runat="server" CssClass="text" Text="teeeest" style="background-color: #297c1c;border:none;color:white;padding:7px 32px;text-align:right;text-decoration:none;cursor:pointer;" />
</div>
</div>
<!--//end #cell_1//-->
</div>
</form>

最佳答案

将背景 rgba 赋予 #cell_1:before

#cell_1 {
margin: 0 -3px 1em 0;
padding: 8px;
float: right;
width: 61%;
height: 100px;
border-radius: 0px 20px 0px 0px;
position: relative;
height: 100px;
}
#cell_1:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #9BBB59;
z-index: -1;
}
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}
#cell_1:hover:before {
background-color: rgba(155, 187, 89, .3);
}
#cell_1:hover .middle {
opacity: 1;
}
.my-btn {
background-color: green;
color: white;
font-size: 16px;
padding: 16px 32px;
cursor: pointer;
}
<!-- Start Cell_1 -->
<div id="cell_1" dir="rtl">
<h2>????? ???????</h2>
<p style="font-size:14px; font-weight:normal"> ABCDEFG .</p>
<div class="middle">
<button class="my-btn">Test</button>
</div>
</div>
<!--//end #cell_1//-->

关于html - 具有不透明度值的悬停背景和具有不同不透明度值的悬停按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52585370/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com