首页 > 代码库 > Html遮罩层的显示(主要在于样式设置)
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>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。