点击按钮时弹出一个居中的遮罩图层,图层弹出后页面无法操作,再次点击页面灰色区域后退出。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>点击按钮弹出居中遮罩图层_武鸣人</title> <style type="text/css"> .hidden{display:none;} #www_wuming_ren{width:498px; height:100px;padding:4px 10px 10px;background-color:#FFFFFF;border:1px solid #05549d;color:#333333;line-height:24px;text-align:left;-webkit-box-shadow:5px 2px 6px #000;-moz-box-shadow:3px 3px 6px #555;} </style> <script type="text/javascript"> //判断浏览器ie6创建的div样式和非ie6创建的div样式 //创建div function showid_wuming_ren(idname){ var isIE = (document.all) ? true : false; var isIE6 = isIE && ([/MSIE (\d)\.0/i.exec(navigator.userAgent)][0][1] == 6); var newbox=document.getElementById(idname); newbox.style.zIndex="9999"; newbox.style.display="block" newbox.style.position = !isIE6 ? "fixed" : "absolute"; newbox.style.top =newbox.style.left = "50%"; newbox.style.marginTop = - newbox.offsetHeight / 2 + "px"; newbox.style.marginLeft = - newbox.offsetWidth / 2 + "px"; var layer=document.createElement("div"); layer.id="layer"; layer.style.width=layer.style.height="100%"; layer.style.position= !isIE6 ? "fixed" : "absolute"; layer.style.top=layer.style.left=0; layer.style.backgroundColor="#000"; layer.style.zIndex="9998"; layer.style.opacity="0.6"; document.body.appendChild(layer); var sel=document.getElementsByTagName("select"); for(var i=0;i<sel.length;i++){ sel[i].style.visibility="hidden"; }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) function layer_iestyle(){ layer.style.width=Math.max(document.documentElement.scrollWidth, document.documentElement.clientWidth) + "px"; layer.style.height= Math.max(document.documentElement.scrollHeight, document.documentElement.clientHeight) + "px"; }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) function newbox_iestyle(){ newbox.style.marginTop = document.documentElement.scrollTop - newbox.offsetHeight / 2 + "px"; newbox.style.marginLeft = document.documentElement.scrollLeft - newbox.offsetWidth / 2 + "px"; }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) if(isIE){layer.style.filter ="alpha(opacity=60)";} if(isIE6){ layer_iestyle() newbox_iestyle(); window.attachEvent("onscroll",function(){ newbox_iestyle(); }) window.attachEvent("onresize",layer_iestyle) }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) layer.onclick=function(){newbox.style.display="none";layer.style.display="none";for(var i=0;i<sel.length;i++){ sel[i].style.visibility="visible"; }} }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <input type="button" id="showbtn" name="showbtn" value="点击显示" onclick="showid_wuming_ren('www_wuming_ren');"> <div id="www_wuming_ren" style="display:none;">武鸣人<br />各种信息免费发布,资源共享合作共赢!<br />点击灰色区域遮罩层消失。</div> </body> </html>
本文来自武鸣人网站,转载请注明出处