欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现可兼容IE6的遮罩功能详解

程序员文章站 2022-04-09 22:20:28
本文实例讲述了jquery实现可兼容ie6的遮罩功能。分享给大家供大家参考,具体如下: 最精简,最强大的 jquery 遮罩层效果。 当浏览器改变大小时,遮罩层的大小会...

本文实例讲述了jquery实现可兼容ie6的遮罩功能。分享给大家供大家参考,具体如下:

最精简,最强大的 jquery 遮罩层效果。

当浏览器改变大小时,遮罩层的大小会相应地改变。

遮罩层上方的对话框可随 scroll 的改变而改变,即对话框在浏览器居中显示。

html 代码

<div id="main"><a onclick="showbg();" href="#" rel="external nofollow" rel="external nofollow" >点击这里看 jquery 遮罩层效果.</a></div>
<div id="fullbg"></div>
<div id="dialog">
<p class="close"><a onclick="closebg();" href="#" rel="external nofollow" rel="external nofollow" >关闭</a></p>
正在加载,请稍后...
</div>

css 代码

body {
  font-family: arial, helvetica, sans-serif;
  font-size: 12px;
  margin: 0;
}
#main {
  height: 1800px;
  padding-top: 90px;
  text-align: center;
}
#fullbg {
  background-color: gray;
  left: 0px;
  opacity: 0.5;
  position: absolute;
  top: 0px;
  z-index: 3;
  filter: alpha(opacity=50); /* ie6 */
  -moz-opacity: 0.5; /* mozilla */
  -khtml-opacity: 0.5; /* safari */
}
#dialog {
  background-color: #fff;
  border: 1px solid #888;
  display: none;
  height: 200px;
  left: 50%;
  margin: -100px 0 0 -100px;
  padding: 12px;
  position: fixed !important; /* 浮动对话框 */
  position: absolute;
  top: 50%;
  width: 200px;
  z-index: 5;
}
#dialog p {
  margin: 0 0 12px;
}
#dialog p.close {
  text-align: right;
}

jquery 代码

<script type="text/javascript" src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
//显示灰色 jquery 遮罩层
function showbg() {
  var bh = $("body").height();
  var bw = $("body").width();
  $("#fullbg").css({
    height:bh,
    width:bw,
    display:"block"
  });
  $("#dialog").show();
}
//关闭灰色 jquery 遮罩
function closebg() {
  $("#fullbg,#dialog").hide();
}
</script>
<!--[if lte ie 6]>
<script type="text/javascript">
// 浮动对话框
$(document).ready(function() {
  var domthis = $('#dialog')[0];
  var wh = $(window).height() / 2;
  $("body").css({
    "background-image": "url(about:blank)",
    "background-attachment": "fixed"
  });
  domthis.style.setexpression('top', 'eval((document.documentelement).scrolltop + ' + wh + ') + "px"');
});
</script>
<![endif]-->

这里别忘记引入jquery文件

更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery窗口操作技巧总结》、《jquery拖拽特效与技巧总结》、《jquery常用插件及用法总结》、《jquery中ajax用法总结》、《jquery表格(table)操作技巧汇总》、《jquery扩展技巧总结》、《jquery常见经典特效汇总》、《jquery动画与特效用法总结》及《jquery选择器用法总结

希望本文所述对大家jquery程序设计有所帮助。