css - 单击文本时的 HTML/CSS Popup div

标签 css html popup

<分区>

我想使用当前按钮为我的“关于”图片/页面制作弹出式 div 而不是弹出式窗口,如本例所示: OMG! Ubuntu! Facebook like popup

最佳答案

演示

在内容区域中,您可以提供要在其中显示的任何内容。

.black_overlay {
  display: none;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
}
.white_content {
  display: none;
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  padding: 16px;
  border: 16px solid orange;
  background-color: white;
  z-index: 1002;
  overflow: auto;
}
<html>

<head>
  <title>LIGHTBOX EXAMPLE</title>
</head>

<body>
  <p>This is the main content. To display a lightbox click <a href="javascript:void(0)" onclick="document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">here</a>
  </p>
  <div id="light" class="white_content">This is the lightbox content. <a href="javascript:void(0)" onclick="document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">Close</a>
  </div>
  <div id="fade" class="black_overlay"></div>
</body>

</html>

关于css - 单击文本时的 HTML/CSS Popup div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19064987/

相关文章:

html - 表格中图像背景的透明度

javascript - 如何更改我网站的标题颜色?

javascript - xeditable 下拉菜单的选定值无法正常工作

javascript - 点击 IFRAME 的陷阱

jquery - 使用 JQuery 切换一个 div

html - Tumblr 照片集百分比宽度

html - 为什么即使我将 img 设置为 block 元素,我的图像也不能居中?

javascript - 如果文本字符串长度超过 3 个字符,则隐藏 div

Django 如何在 View 中完成方法后实现警报()(弹出消息)

Javascript |将字符串变量传递给 onclick 事件不起作用