电脑开机后黑屏JS简单实现点击按钮或⽂字显⽰遮罩层的⽅法
本⽂实例讲述了JS简单实现点击按钮或⽂字显⽰遮罩层的⽅法。分享给⼤家供⼤家参考,具体如下:
运⾏效果图如下:
蓝莓饮料>计划生育证明完整代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>点击⽂字弹出⼀个DIV层窗⼝代码</title>
<meta chart="urf-8"/>宣传卡
<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 = "ElementById('light').style.display='block';ElementById('fade').style.display='block'">请点这⾥</a></p>
<div id="light" class="white_content">这是⼀个层窗⼝⽰例程序. <a href = "javascript:void(0)" onclick = "ElementById('light').style.display='none';ElementById('fade').style.display='none'">点这⾥关闭本窗⼝</a></div> <div id="fade" class="black_overlay"></div>
</body>
</html>
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》及《》
希望本⽂所述对⼤家JavaScript程序设计有所帮助。