我创建了一个JSFiddle to show接口的样子。
我想要做的是,在一些div.contact-box
元素上,我想对其中一些元素应用CSS叠加层......其中有一个黑色叠加层(比如70%不透明度) )contact-box
内的所有内容。
在该叠加层上,我想添加一个常规的Bootstrap按钮,其中包含 p
标记和按钮上方的某种语言(如Click here to unlock this profile
)。
当用户在该叠加层上悬停时,我想显示一个常规的Bootstrap按钮,其中包含p
标记和按钮上方的某种语言(如Click here to unlock this profile
)。
因为SO需要一些代码,所以这就是div.contact-box
的CSS:
.contact-box {
background-color: #ffffff;
border: 1px solid #e7eaec;
padding: 20px;
margin-bottom: 20px;
}
所有.contact-box
样式都位于小提琴中CSS的底部。
思想?
修改1
理想情况下,它应该是我可以添加的新课程。根据需要移至div.contact-box
。
答案 0 :(得分:2)
您如何考虑将position: relative
提供给父级,将position: absolute
提供给.well
?
我添加了以下 CSS :
.hidden-profile {
position: relative;
background-color: rgba(0, 0, 0, 0.5);
}
.hidden-profile > * {
opacity: 0.5;
}
.hidden-profile .well {
position: absolute;
padding: 10px;
top: 50%;
left: 10px;
right: 10px;
text-align: center;
background-color: #fff;
border-radius: 5px;
transform: translateY(-50%);
z-index: 1;
opacity: 0;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.hidden-profile .well p {
margin: 0;
}
.hidden-profile:hover .well {
opacity: 1;
}
此 HTML :
<div class="contact-box profile-38 hidden-profile">
<div class="well">
<p>Unlock to view!</p>
</div>
<!-- Rest of the Code.. -->
</div>
预览强>
正常状态:
悬停状态:
* {
margin: 0;
padding: 0;
list-style: none;
}
body {
background: #2f4050;
}
.players {
margin: 25px;
}
.players li {
background-color: #fff;
margin: 15px;
text-align: center;
overflow: hidden;
height: 7em;
}
.players li span {
display: inline-block;
margin-top: 2.5em;
}
.players li.hidden-profile {
position: relative;
background-color: rgba(0, 0, 0, 0.5);
}
.players li.hidden-profile p {
position: absolute;
padding: 10px;
top: 50%;
left: 10px;
right: 10px;
text-align: center;
background-color: #fff;
border-radius: 5px;
transform: translateY(-50%);
}
&#13;
<ul class="players">
<li><span>Player Stuff</span></li>
<li class="hidden-profile">
<p>Hello, this is hidden.</p><span>Player Stuff</span>
</li>
<li><span>Player Stuff</span></li>
</ul>
&#13;
预览强>