Div全屏遮罩(兼容IE、Firefox、Chrome等主流浏览器)

来源:互联网 发布:如何评价网络架构 编辑:程序博客网 时间:2024/05/06 22:17

<body>

<Div id="DivLocker"></Div>

其他html元素....

<script language="text/javascript">
      $('#DivLocker').css({
        "position": "absolute",
        "margin-left": "1px",
        "margin-top": "1px",
        "background-color": "#000000",
        "height": function () { return $(document).height(); },
        "filter": "alpha(opacity=30)",
        "opacity": "0.3",
        "overflow": "hidden",
        "width": function () { return $(document).width(); },
        "z-index": "999"
    });
</script>

</body>

注意:

1、<Div id="DivLocker"></Div>须放在Body开始符号之后第一个位置

2、<script>...</script>脚本须放在Body结束之前的最后一个位置(保证页面存在动态生成html代码时可全屏遮罩)

3、如果页面中有大的图片加载在img标签的onload事件中执行<script>...</script>脚本,这样才可全屏遮罩,否则会出现不完全遮罩

阅读全文
0 0
原创粉丝点击