/************************************************************************************* 程式功能 : 底色遮罩 建置日期 : 2012-05-03 版本 : 1.0 版權所有 : 尚峪資訊科技有限公司 http://www.shang-yu.com.tw 開發者 : ken -------------------------------------------------------------------------------------- 參數 id : 產生的遮罩ID opacity : 透明度 display : 顯示狀態(true, false) z-index : 層次 *************************************************************************************/ (function ($){ jQuery.fn.extend ({ mask: function(option){ return this.each(function(){ var settings = { id : "shyu_mask", opacity : "0.1", display : true, zindex : "9997" }; $.extend(settings, option); if(settings.display){ $(this).append('
'); $("#" + settings.id).css({ "left" : 0, "top" : 0, "width" : $("body").width(), "height" : $("body").height(), "position" : "fixed", "z-index" : settings.zindex, "opacity" : settings.opacity, "background-color" : "#000" }); } else{ $("#" + settings.id).remove(); }; }); } }); })(jQuery);