日期:2014-05-17 浏览次数:20534 次
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
<script type="text/javascript">
window.onload=function(){
var mask = document.getElementById("mask");
var b = document.documentElement?document.documentElement:document.body;
mask.style.width = b.clientWidth+"px";
mask.style.height = b.scrollHeight+"px";
}
</script>
</head>
<body style="height:1000px">
<div id="mask" style="top:0px;left:0px;background:#000;filter:alpha(opacity=60);opacity:0.6;position:absolute;z-index:99;"></div>
</body>
</html>