国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > CSS > 正文

IE6下position fixed失效的解決方法(親測有效)

2024-07-11 08:35:25
字體:
來源:轉載
供稿:網友

在網上找了好久,終于找到一種親測有效的解決方法。


<!–[if IE 6]>
<script type=”text/javascript”>
(function($) {
jQuery.fn.Fixed = function(options) {
var defaults = {
x:0,
y:0
};
var o = jQuery.extend(defaults, options);
var isIe6 = !window.XMLHttpRequest;
var html= $(‘html’);
if (isIe6 && html.css(‘backgroundAttachment’) !== ‘fixed’) { //防止抖動
html.css(‘backgroundAttachment’,’fixed’)
.css(‘backgroundImage’,’url(about:blank)’);
};
return this.each(function() {
var domThis=$(this)[0];
var objThis=$(this);
if(isIe6){
objThis.css(‘position’ , ‘absolute’);
domThis.style.setExpression(‘left’, ‘eval((document.documentElement).scrollLeft + ‘ + o.x + ‘) + “px”‘);
domThis.style.setExpression(‘top’, ‘eval((document.documentElement).scrollTop + ‘ + o.y + ‘) + “px”‘);
} else {
objThis.css(‘position’ , ‘fixed’).css(‘top’,o.y).css(‘left’,o.x);
}
});
};
})(jQuery)
</script>
<![endif]–>

調用方法如下:


<!–[if IE 6]>
<script type=”text/javascript”>
$(function(){
$(‘.float’).Fixed({x:800,y:200});
});
</script>
<![endif]–>

fixed一般應用有兩種情況。

一,居中的彈層:


<!–[if IE 6]>
<script type=”text/javascript”>
$(function(){
//centerX和centerY是可視窗口的高和寬,需要減去自身的的寬度或高度的一半才能居中
var screenHeight=document.documentElement.clientHeight,
  screenWidth=document.documentElement.clientWidth,
floatHeight=$(‘.float’).height(),
floatWidth=$(‘.float’).width();
$(‘.float’).Fixed({
x:(screenWidth-floatWidth)/2,
y:(screenHeight-floatHeight)/2
});
});
</script>
<![endif]–>

二,靠右的彈層,類似于回到頂部等:


<!–[if IE 6]>
<script type=”text/javascript”>
$(function(){
//centerX和centerY是可視窗口的高和寬,高度自定義,寬度為屏幕寬度-浮層寬度
var screenHeight=document.documentElement.clientHeight,
  screenWidth=document.documentElement.clientWidth,
floatHeight=$(‘.float’).height(),
floatWidth=$(‘.float’).width();
$(‘.float’).Fixed({
x:screenWidth-floatWidth,
y:300
});
});
</script>
<![endif]–>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 菏泽市| 张家川| 阜新市| 无锡市| 洪湖市| 伊金霍洛旗| 赤壁市| 垦利县| 高邑县| 石景山区| 苏州市| 北流市| 呼玛县| 嘉定区| 潞城市| 沈阳市| 彭阳县| 新河县| 哈密市| 河源市| 邮箱| 大同县| 出国| 鹤壁市| 资溪县| 罗江县| 肃北| 桂林市| 韶山市| 盘锦市| 简阳市| 法库县| 衡阳市| 出国| 阳春市| 灯塔市| 安吉县| 时尚| 琼海市| 吴川市| 湖州市|