在iframe 中页面中设置遮罩遮罩层

 

1.创建遮罩层(遮住左边的菜单和上面的菜单)

function CreatNodeAll()
 {
 var NewMask=window.parent.document.createElement("div");
 NewMask.id="Mask";
 NewMask.style.position="absolute";
 NewMask.style.top="0";
 NewMask.style.left="0";
 NewMask.style.zIndex="1";
 NewMask.style.backgroundColor="#000000";
 NewMask.style.filter="alpha(opacity=30)";
 //NewMask.style.opacity="0.7";
 NewMask.style.width="201";
 NewMask.style.height=(window.parent.document.body.scrollHeight+50)+"px";
 
 
 var TopMask=window.parent.document.createElement("div");
 TopMask.id="TopMask";
 TopMask.style.position="absolute";
 TopMask.style.top="0";
 TopMask.style.left="201";
 TopMask.style.zIndex="1";
 TopMask.style.backgroundColor="#000000";
 TopMask.style.filter="alpha(opacity=30)";
 //TopMask.style.opacity="0.7";
 TopMask.style.width="100%";
 TopMask.style.height="20%";
 window.parent.document.body.appendChild(TopMask);
 
 window.parent.document.body.appendChild(NewMask);
 }
 
//移除遮罩层
function CancelAll()
{
window.parent.document.body.removeChild(window.parent.document.getElementById("TopMask"));
window.parent.document.body.removeChild(window.parent.document.getElementById("Mask"));
}

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值