Div层弹出

Posted 可爱2014

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Div层弹出相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>点击文字弹出一个DIV层窗口代码</title>
<style>
.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=88);
}
.white_content {
display: none;
position: absolute;
top: 25%;
left: 25%;
width: 55%;
height: 55%;
padding: 20px;
border: 10px solid orange;
background-color: white;
z-index:1002;
overflow: auto;
}
</style>
</head>
<body>
<p>示例弹出层:<a href = "javascript:void(0)" onclick = "document.getElementById(‘light‘).style.display=‘block‘;document.getElementById(‘fade‘).style.display=‘block‘">请点这里</a></p>
<div id="light" class="white_content">这是一个层窗口示例程序. <a href = "javascript:void(0)" onclick = "document.getElementById(‘light‘).style.display=‘none‘;document.getElementById(‘fade‘).style.display=‘none‘">点这里关闭本窗口</a></div>
<div id="fade" class="black_overlay"></div>
</body>
</html>

以上是关于Div层弹出的主要内容,如果未能解决你的问题,请参考以下文章

WKWebView使用(一)弹框实现

原生实现点击某个按钮后弹出弹出框

layer框架弹出层

layer弹出层弹出图片第一次总在右下角,第二次才在页面中间

如何在目标c中弹出弹出全视图?

vue拦截路由回退弹出弹框