/*************************************************************************************
程式功能 : 延遲box
建置日期 : 2012-05-03
版本 : 1.0
版權所有 : 尚峪資訊科技有限公司 http://www.shang-yu.com.tw
開發者 : ken
--------------------------------------------------------------------------------------)
參數
msg : 訊息
src : 圖片連結
offset : 位置(center-center)
mask : 是否遮罩(true, false)
display : 顯示狀態(true, false)
*************************************************************************************/
(function ($){
jQuery.fn.extend ({
delayBox: function(option){
return this.each(function(){
var settings = {
msg : "",
src : "",
offset : "center-center",
mask : false,
display : false
};
$.extend(settings, option);
if(settings.display){
switch(settings.offset){
case "center-center":
var myleft = $(window).width() / 2 - 150 / 2;
var mytop = ($(window).height() / 2 - 90) + $(document).scrollTop();
break;
};
if(settings.mask){
$("body").mask({id : 'shyu_delayboxmask',
opacity : '0',
display : true,
"z-index" : 9997
});
};
if($("#shyu_delaybox").attr('id'))$("#shyu_delaybox").remove();
$(this).append('
' + settings.msg + '
');
$("#shyu_delaybox").css({
"left" : myleft,
"top" : mytop,
"width" : "150px",
"height" : "90px",
"border" : "1px solid #6CF",
"background-color" : "#FFF",
"text-align" : "center",
"color" : "#6CF",
"font-weight" : "bold",
"padding" : "5px",
"position" : "absolute",
"z-index" : "9998"
});
}
else{
$("#shyu_delaybox").fadeOut(function(){
$(this).remove();
$("body").mask({id : 'shyu_delayboxmask',
display : false
});
});
};
});
}
});
})(jQuery);