DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery實現簡單網頁遮罩層/彈出層效果兼容IE6、IE7
jQuery實現簡單網頁遮罩層/彈出層效果兼容IE6、IE7
編輯:JQuery特效代碼     
本屌絲最近工作要求重寫網站所有代碼,so...極其蛋疼的事情出現了,管我的人要求不能用網上的插件,oh~~~my god!! 這是多麼能讓千萬只草原上的馬兒奔騰的要求~~~

先實現一個比較簡單的功能:

需求:網頁遮罩層/彈出層,兼容IE6

幸好本屌絲以前聰明收集了個js的版本,so,自己改寫成了jQuery插件形式的,方便以後使用。

屁話不多放,無碼無真相!
. 代碼如下:
/*******************************
* @name Layer跨浏覽器兼容插件 v1.0
*******************************/
;(function($){
$.fn.layer = function(){
var isIE = (document.all) ? true : false;
var isIE6 = isIE && !window.XMLHttpRequest;
var position = !isIE6 ? "fixed" : "absolute";
var containerBox = jQuery(this);
containerBox.css({"z-index":"9999","display":"block","position":position ,"top":"50%","left":"50%","margin-top": -(containerBox.height()/2)+ "px","margin-left": -(containerBox.width()/2) + "px"});
var layer=jQuery("<div></div>");
layer.css({"width":"100%","height":"100%","position":position,"top":"0px","left":"0px","background-color":"#000","z-index":"9998","opacity":"0.6"});
jQuery("body").append(layer);
function layer_iestyle(){
var maxWidth = Math.max(document.documentElement.scrollWidth, document.documentElement.clientWidth) + "px";
var maxHeight = Math.max(document.documentElement.scrollHeight, document.documentElement.clientHeight) + "px";
layer.css({"width" : maxWidth , "height" : maxHeight });
}
function containerBox_iestyle(){
var marginTop = jQuery(document).scrollTop - containerBox.height()/ 2 + "px";
var marginLeft = jQuery(document).scrollLeft - containerBox.width()/ 2 + "px";
containerBox.css({"margin-top" : marginTop , "margin-left" : marginLeft });
}
if(isIE){
layer.css("filter","alpha(opacity=60)");
}
if(isIE6){
layer_iestyle();
containerBox_iestyle();
}
jQuery("window").resize(function(){
layer_iestyle();
});
layer.click(function(){
containerBox.hide();
jQuery(this).remove();
});
};
})(jQuery);

哈哈,是不是很簡單,但是此處有個比較大的bug,沒法讓IE6支持背景色透明,所以,在IE6的顯示下,就會出現一大片屎黑色~~~~

現在來說說使用方法:

第一步:引用jquery文件,這個不多說,自己下去吧,http://jquery.com

第二步:把我這個插件引用進去,這個也不多說,點擊下載,

第三步:你看,你要顯示在中間的內容box,我是不是沒法給你實現,所以,需要你自己建一個,放在網頁最下端即可,

eg:
. 代碼如下:
<div id="kabulore-layer">
<div class="box_container">
彈彈彈,彈走魚尾紋~~
</div>
</div>

第四步:在你要彈出來這個內容框的地方加個時間,以click為例:
. 代碼如下:
$("#tan").click(function(){
$("#kabulore-layer").layer();
});

大功告成!

注:此插件是點擊灰色區域的時候,該彈出層自動隱藏,如果想加個關閉按鈕再隱藏,可自己寫一下close事件
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved