js+html实现遮罩层效果

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

//遮罩  
    function coverDiv(){  
        var procbg = document.createElement("div"); //首先创建一个div  
        procbg.setAttribute("id","mybg"); //定义该div的id  
        procbg.style.background = "#000000";  
        procbg.style.width = "100%";  
        procbg.style.height = "100%";  
        procbg.style.position = "fixed";  
        procbg.style.top = "0";  
        procbg.style.left = "0";  
        procbg.style.zIndex = "500";  
        procbg.style.opacity = "0.6";  
        procbg.style.filter = "Alpha(opacity=70)";  
        document.body.appendChild(procbg);  
    }  
    //取消遮罩  
    function hide() {  
        /* document.getElementById('light').style.display="none"; */  
        $("div[class='xucun_content']").hide();  
        var body = document.getElementsByTagName("body");  
        var mybg = document.getElementById("mybg");  
        body[0].removeChild(mybg);  
    }

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...