Html遮罩层的显示(主要在于样式设置)
<html> <head> <title></title> <style type="text/css"> #divshow { position: fixed; /*相对于浏览器窗口进行定位*/ left: 0px; top: 0px; width: 100%; height: 100%; opacity:0.6; /* 透明度*/ background:red; display:none; position:absolute; /*相对定位*/ z-index:999; } </style> <script type="text/javascript"> function myfunction() { document.getElementById("divshow").style.display = "block" } </script> </head> <body> <div style=" left:0px; top:0px; width:100%; height:100%;"> <input type="button" id="btn" value="你好!" onclick="myfunction()" /> </div> <div id="divshow"> <div style=" width:300px; height:200px; left:50%; top:50%; position:relative; background-color:Gray; margin-left:-150px; margin-top:-100px;" >你妹的</div> </div> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。