解决IE6下position:fixed失效的方法

E6浏览器不支持position:fixed,IE7/8/9、Firefox和chrome等浏览器都支持Fixed定位。如何解决这个问题呢?
方法一: 针对ie6写hack,其他的浏览器仍然用position:fixed属性。

使用position:absolute绝对定位来解决。构造一个滚动条,这个滚动条是包含该文档内容的滚动条(它可以是body,也可以是某个div)。position:absolute是绝对定位。脱离了整个文档流,不相对该滚动条包含的文档,而应该是滚动条包含文档的上一级元素。
方法二:完全使用position:absolute来解决固定定位问题。因为其他的浏览器都支持绝对定位。

测试所用浏览器:IE6/7/8/9、Firefox、Chrome、Safari。

下面就使用IE6浏览器看看效果吧~

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>IE6 Fixed Bug</title> 
<meta name="author" content="Chomo" />
</head>
<style>
* { padding:0; margin:0;}
body { height:100%; overflow:hidden; position:relative;}
html { height:100%; overflow:hidden;}
.left { position:absolute; top:10px; left:50%; width:20px; padding:40px; margin-left:-490px; height:100px; background:#EFF7FF; border:1px solid #96C2F1;}
.right { position:absolute; top:10px; left:50%; width:20px; padding:40px; margin-left:372px; height:100px; background:#EFF7FF; border:1px solid #96C2F1;}
.footer { position:absolute; bottom:0px; left:50%; width:738px; margin-left:-379px; _margin-left:-378px; height:50px; background:#EFF7FF; border:1px solid #96C2F1; text-align:center; line-height:50px;}
.box { height:100%; overflow:auto; overflow-y:scroll;}
.content { width:700px; height:2000px; margin:0 auto; background:#eee; padding:20px; font-size:12px; font-family:"微软雅黑"; color:#000; line-height:30px; }
</style>
<body>
<div class="left">左侧广告条</div>
<div class="right">右侧广告条</div>
<div class="footer">底部版权</div>
<div class="box">
<div class="content">
<p>
<h1>解决IE6下position:fixed失效的方法</h1><br />
IE6浏览器不支持position:fixed,IE7/8/9、Firefox和chrome等浏览器都支持Fixed定位。如何解决这个问题呢?<br />
方法一:
    
针对ie6写hack,其他的浏览器仍然用position:fixed属性。</p>
<p><!--[if lte IE 6]><br />
   <style><br />
   <!-- IE6-CSS --><br />
   </style><br />
   <![endif]--></p>
<p>使用position:absolute绝对定位来解决。构造一个滚动条,这个滚动条是包含该文档内容的滚动条(它可以是body,也可以是某个div)。position:absolute是绝对定位。脱离了整个文档流,不相对该滚动条包含的文档,而应该是滚动条包含文档的上一级元素。 <br />
方法二:
完全使用position:absolute来解决固定定位问题。因为其他的浏览器都支持绝对定位。 </p>
<p>测试所用浏览器:IE6/7/8/9、Firefox、Chrome、Safari。<br /><br />
下面就使用IE6浏览器看看效果吧~——www.Toyean.com 拓源网(转载请注明出处!)</p>
</div>
</div>
</body>
</html>

方法三:先预览下面的代码

    <!DOCTYPE html>  
    <html>  
    <head>  
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
    <title>IE6 position:fixed bug</title>  
    <style>  
    *{padding:0;margin:0}  
    p{height:2000px}  
    #gs{border:1px solid #000;position:fixed;right:30px;top:120px}  
    </style>  
    <!--[if IE 6]>  
    <style type="text/css">  
    html{overflow:hidden}  
    body{height:100%;overflow:auto}  
    #gs{position:absolute}  
    </style>  
    <![endif]-->  
    </head>  
    <body>  
    <div id="rightform">  
        <p>11111111111111111</p>  
        <input id="gs" name="gs" type="text" value=""  />  
    </div>  
    </body>  
    </html>  
以上这段代码在网上很常见,通过设置html{overflow:hidden}和body{height:100%;overflow:auto}来实现ie6下position:fixed效果,但这种办法有个缺陷,那就是:这会使页面上原有的absolute、relation都变成fixed的效果,在这里我就不做demo了,如果有怀疑,可以自己去试验一下。

于是我找了下资料,发现可以通过一条Internet Explorer的CSS表达式(expression)来完美的实现ie6下position:fixed效果,css代码如下:

    /* 除IE6浏览器的通用方法 */  
    .ie6fixedTL{position:fixed;left:0;top:0}  
    .ie6fixedBR{position:fixed;right:0;bottom:0}  
    /* IE6浏览器的特有方法 */  
    * html .ie6fixedTL{position:absolute;left:expression(eval(document.documentElement.scrollLeft));top:expression(eval(document.documentElement.scrollTop))}  
    * html .ie6fixedBR{position:absolute;left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)))}  

上面代码可以直接使用了,如果要设置元素悬浮边距,要分别为设置两次,比如我要让某个元素距顶部10个像素,距左部也是10个像素,那就要这样子写:
XML/HTML代码
    /* 除IE6浏览器的通用方法 */  
    .ie6fixedTL{position:fixed;left:10px;top:10px}  
    /* IE6浏览器的特有方法 */  
    * html .ie6fixedTL{position:absolute;left:expression(eval(document.documentElement.scrollLeft+10));top:expression(eval(document.documentElement.scrollTop+10))}  

这样一来,IE6下实现position:fixed的效果解决了,而且也不会影响到其他的absolute、relation,但还有一个问题,就是悬浮的元素会出现振动。IE有一个多步的渲染进程。当你滚动或调整你的浏览器大小的时候,它将重置所有内容并重画页面,这个时候它就会重新处理css表达式。这会引起一个丑陋的“振动”bug,在此处固定位置的元素需要调整以跟上你的(页面的)滚动,于是就会“跳动”。

解决此问题的技巧就是使用background-attachment:fixed为body或html元素添加一个background-image。这就会强制页面在重画之前先处理CSS。因为是在重画之前处理CSS,它也就会同样在重画之前首先处理你的CSS表达式。这将让你实现完美的平滑的固定位置元素!


然后我发现background-image无需一张真实的图片,设置成about:blank就行了。下面附上完整代码:
XML/HTML代码
    /* 除IE6浏览器的通用方法 */  
    .ie6fixedTL{position:fixed;left:0;top:0}  
    .ie6fixedBR{position:fixed;right:0;bottom:0}  
    /* IE6浏览器的特有方法 */  
    /* 修正IE6振动bug */  
    * html,* html body{background-image:url(about:blank);background-attachment:fixed}  
    * html .ie6fixedTL{position:absolute;left:expression(eval(document.documentElement.scrollLeft));top:expression(eval(document.documentElement.scrollTop))}  
    * html .ie6fixedBR{position:absolute;left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)))}  
转自:www.Toyean.com 拓源网

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值