一个简单的遮罩层效果

ContractedBlock.gif ExpandedBlockStart.gif 代码
 
   
< html >

< head >
< style type ="text/css" >
body
{
margin
: 0px ;
padding
: 0px ;
}
</ style >
< script type ="text/javascript" >
var index = 0 ;
function blockDiv(){
try
{
if (index >= 80 )
{
// alert(document.body.clientHeight);
return ;
}
else
{
document.getElementById(
" a " ).style.display = " block " ;
document.getElementById(
" a " ).style.filter =

" progid:DXImageTransform.Microsoft.Alpha(style=0,opacity= " + index + " ) "
index
= index + 10 ;
// var self = this;
window.setTimeout(blockDiv, 10 )
}
}
catch (e)
{}
}
function hiddenDiv()
{
try
{
if (index <= 0 ){document.getElementById( " a " ).style.display = " none " ; return ;}
else
{
document.getElementById(
" a " ).style.filter =

" progid:DXImageTransform.Microsoft.Alpha(style=0,opacity= " + index + " ) "
index
= index - 10 ;
// var self = this;
window.setTimeout(hiddenDiv, 10 )
}
}
catch (e)
{}
}
</ script >
</ head >

< body >

< div style ="background-color:red;border:1px black solid" >
一个简单的遮罩层效果
< br >
一个简单的遮罩层效果
< br >
一个简单的遮罩层效果
< br >
一个简单的遮罩层效果
< br >
一个简单的遮罩层效果
< br >
</ div >

< input type ="button" value ="特效" onclick ="blockDiv()" >

< div id ="a" style ="background-image:none; z-index: 11000; position: absolute; filter:

progid:DXImageTransform.Microsoft.Alpha(opacity=0); PADDING-BOTTOM: 0px; border-right-width: 0px;

background-color: black; margin: 0px; padding-left: 0px; width: 100%; padding-right: 0px; border-top-

width: 0px; border-bottom-width: 0px; height: 100%; border-left-width: 0px; top: 0px; padding-top: 0px;

left: 0px;display:none"
>
< table width ="100%" height ="100%" >< tr >< td align ="center" >

< div style ="width:200px;height:100px;background-color:white" >

< table width ="100%" >
< tr >
< td align ="left" onclick ="hiddenDiv()" >
< script >
document.write(
" 网页可见区高度: " + document.body.clientHeight + " px;<br> " )
document.write(
" 网页可见区宽度: " + document.body.clientWidth + " px;<br> " );
document.write(
" 网页正文全文宽: " + document.body.scrollHeight + " px;<br> " );
</ script >
</ td >
</ tr >
</ table >

</ div >

</ td ></ tr ></ table >
</ div >


<!-- <div style="background-image: none; z-index: 11001; position: absolute; padding-bottom: 0px; border

-right-width: 0px; background-color: transparent; margin: 0px; padding-left: 0px; padding-right: 0px;

border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; top: 0px; padding-top: 0px;

left: 0px; height:100%; width:100%;text-align:center; padding-top:20%">asdfsdf</div>
-->

<!--
<table width="100%" height="100%" style="position: absolute;" align="center">
<tr align="center">
<td>aaa</td>
</tr>
</table>
-->



</ body >
</ html >

 

2010年5月23日改进版

 

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
 
<head>
<style type="text/css">
body{
margin:0px;
padding:0px;
}
#a{
    background-image:none; 
    z-index: 50;
    position: absolute; 
    opacity:0; /*非IE*/
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);/*IE*/
    PADDING-BOTTOM: 0px; 
    border-right-width: 0px; 
    background-color: black; 
    margin: 0px; 
    padding-left: 0px; 
    width: 100%; 
    padding-right: 0px; 
    border-top-width: 0px; 
    border-bottom-width: 0px; 
    height: 100%; 
    border-left-width: 0px; 
    top: 0px; 
    padding-top: 0px; 
    left: 0px;
    display:none;
}
.PopWindowDiv{
    z-index: 100; 
    width: 280px; 
    height: 200px; 
    position: fixed; 
    /*IE下如果漂浮效果没有实现可能是<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 标准没有加上去*/
    /*top:0px;*/
    bottom: 0px;
    right:0px;
    /*left: 0px;*/
    border:1px black solid;
    background-color:white;
}
#ShowMsg{
    z-index: 100; 
    width: 100%;
    display:none;
    position: fixed; 
    top:200px;
    text-align:left;
}
</style>
<script type="text/javascript" >
function $$(obj){return typeof(obj)=="string"?document.getElementById(obj):obj; }
var isIE = /*@cc_on!@*/false;
var index = 0;
function blockDiv(){
    try
    {
        if(index>=80)
        {
            //alert(document.body.clientHeight);  
            $$("ShowMsg").style.display="block";
            return;
        }
        else
        {
            $$("a").style.display="block";
            //alert(document.body.clientHeight);
            $$("a").style.height =document.body.clientHeight;
            //$$("a").style.height ="100%";
            //document.body.style.overflow = "hidden";
            var opacity = index/100;
            if(isIE)
            {
                $$("a").style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity="+index+")"        
            }
            else
            $$("a").style.opacity = opacity ;
            index= index+10;
            
            //var self = this;
            window.setTimeout(blockDiv,10)
        }
    }
    catch(e)
    {}
}
function hiddenDiv()
{
    try
    {
        if(index<=0)
        {
            document.getElementById("a").style.display="none";
            //document.body.style.overflow = "auto";
            $$("ShowMsg").style.display="none";
            return;
        }
        else
        {
            var opacity = index/100;
            if(isIE)
            {
                document.getElementById("a").style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity="+index+")"        
            }
            else
            document.getElementById("a").style.opacity = opacity ;
            index= index-10;
            
            //var self = this;
            window.setTimeout(hiddenDiv,10)
        }
    }
    catch(e)
    {}
}
</script>
</head>
 
<body>
 
<div style="background-color:red;border:1px black solid">
asdfsadfsdfsdffsdfsdfsdfsdf<br>
asdfsadfsdfsdffsdfsdfsdfsdf<br>
asdfsadfsdfsdffsdfsdfsdfsdf<br>
asdfsadfsdfsdffsdfsdfsdfsdf<br>
asdfsadfsdfsdffsdfsdfsdfsdf<br>
</div>
 
 
<script>
for(var i = 0;i <= 40;i++)
document.write("a<br>");
</script>
 
 
<div id="a"></div>
 
 
<div id="ShowMsg">
 
<table width="100%" height="100%"><tr><td  align="center">
<table  width="200px" style="background-color:white">
<tr>
<td align="left">
<div style="text-align:right"><input type="button" value="关闭"  οnclick="hiddenDiv()"></div>
<script type="text/javascript">
document.write("网页可见区高度:"+document.body.clientHeight+"px;<br>")
document.write("网页可见区宽度:"+document.body.clientWidth+"px;<br>");
document.write("网页正文全文高:"+document.body.scrollHeight+"px;<br>");
</script>
</td>
</tr>
</table>
</td></tr></table>
 
</div>
 
 
 <DIV class="PopWindowDiv">
    <input type="button" value="特效" οnclick="blockDiv()">
</DIV>
 
 
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值