js+CSS实现弹出居中背景半透明div层的方法
本文实例讲述了js+CSS实现弹出居中背景半透明div层的方法。分享给大家供大家参考。具体实现方法如下:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/> <title>js+CSS弹出居中的背景半透明div层</title> <styletype="text/css"> body{margin:0px;} #bg{width:100%;height:100%;top:0px;left:0px;position:absolute;filter:Alpha(opacity=50);opacity:0.5;background:#000000;display:none;} #popbox{position:absolute;width:400px;height:400px;left:50%;top:50%;margin:-200px00-200px;display:none;background:#666666;} </style> <scripttype="text/javascript"> functionpupopen(){ document.getElementById("bg").style.display="block"; document.getElementById("popbox").style.display="block"; } functionpupclose(){ document.getElementById("bg").style.display="none"; document.getElementById("popbox").style.display="none"; } </script> </head> <body> </br> CSS弹出层,或者说是弹出窗口,背景半透明风格的弹出框,</br>在网站登录、用户注册、公告提示方面都非常适合使用。</br>IE和FF,OP均可以~弹出窗口,背景半透明</br> 原理:两个层,一个高度和宽度都是100%,另一个就是你要弹出的窗口的具体内容,</br>半透明在IE中是用filter:Alpha(opacity=60);在非IE中用opacity:0.60; </br></br><ahref="#"onclick="pupopen()">点击这里打开窗口</a> <divid="bg"></div> <divid="popbox">两个层,一个高度和宽度都是100%,另一个就是你要弹出的窗口的具体内容,半透明在IE中是用filter:Alpha(opacity=60);在非IE中用opacity:0.60; <br> <br> <br> <ahref="#" onclick="pupclose()">点击关闭窗口</a> </div> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。