如何为这些div添加叠加层?

时间:2016-12-17 20:17:07

标签: html css twitter-bootstrap

我创建了一个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

1 个答案:

答案 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>

预览

正常状态:

preview

悬停状态:

preview

&#13;
&#13;
* {
  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;
&#13;
&#13;

预览

preveiw