css javascript div实现网页的模态对话框
程序员文章站
2022-04-20 08:22:50
...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.php.cn">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.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=30);
}
.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;
}
.test{width:56%; height:10%;position:absolute; left:252px; top:200px; background:#FFFFFF; border:#00FF33 solid 1px; text-align:center; background:#009933;z-index:1003;}
-->
</style>
<script language="javascript">
function opendiv(lixing){
document.getElementById("test").style.display="block";
//if(lixing==0)
document.getElementById('fade').style.display='block';
}
function colsediv(lixing){
document.getElementById("test").style.display="none";
//if(lixing==0)
document.getElementById('fade').style.display='none';
}
</script>
</head>
<body>
<p>可以根据自己要求修改css样式<a href = "javascript:void(0)" onclick = "opendiv(0)">点击这里打开窗口(不充许)</a></p>
<!--<p>可以根据自己要求修改css样式<a href = "javascript:void(0)" onclick = "opendiv(1)">点击这里打开窗口(充许)</a></p>-->
<div id="test" class="test" style="display:none">This is the lightbox content. <a href = "javascript:void(0)" onclick = "colsediv(0)">Close</a>呵呵呵</div>
<div id="fade" class="black_overlay"></div>
</body>
</html>
"http://www.php.cn">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.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=30);
}
.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;
}
.test{width:56%; height:10%;position:absolute; left:252px; top:200px; background:#FFFFFF; border:#00FF33 solid 1px; text-align:center; background:#009933;z-index:1003;}
-->
</style>
<script language="javascript">
function opendiv(lixing){
document.getElementById("test").style.display="block";
//if(lixing==0)
document.getElementById('fade').style.display='block';
}
function colsediv(lixing){
document.getElementById("test").style.display="none";
//if(lixing==0)
document.getElementById('fade').style.display='none';
}
</script>
</head>
<body>
<p>可以根据自己要求修改css样式<a href = "javascript:void(0)" onclick = "opendiv(0)">点击这里打开窗口(不充许)</a></p>
<!--<p>可以根据自己要求修改css样式<a href = "javascript:void(0)" onclick = "opendiv(1)">点击这里打开窗口(充许)</a></p>-->
<div id="test" class="test" style="display:none">This is the lightbox content. <a href = "javascript:void(0)" onclick = "colsediv(0)">Close</a>呵呵呵</div>
<div id="fade" class="black_overlay"></div>
</body>
</html>
推荐阅读
-
关于学生对象的增删改查的“改”(网页界面,bootstrap)(续,使用模态窗的修改操作)第二种实现方式(JavaScript DOM操作)
-
JavaScript写的一个DIV 弹出网页对话框_javascript技巧
-
JavaScript写的一个DIV 弹出网页对话框_javascript技巧
-
通过定位实现的div块网页中固定效果_html/css_WEB-ITnose
-
javascript+css 网页每次加载不同样式的实现方法_javascript技巧
-
JS+CSS实现感应鼠标渐变显示DIV层的方法_javascript技巧
-
CSS+JS实现点击文字弹出定时自动关闭DIV层菜单的方法_javascript技巧
-
JS+CSS实现感应鼠标渐变显示DIV层的方法_javascript技巧
-
CSS+JS实现点击文字弹出定时自动关闭DIV层菜单的方法_javascript技巧
-
css javascript div实现网页的模态对话框