请等待提示

来源:互联网 发布:ntp服务器地址 端口 编辑:程序博客网 时间:2024/05/21 06:20
function tipShow(){    $("body").addClass("csbd");    var bg="<div id='dom0' style='width:100%;position:absolute;z-index:998;height:"+$(document).height()+"px;cursor:wait;background:#000000;opacity:0.1;filter:alpha(opacity=10);left:0px;top:0px;'></div>";    var tip="<div id='dom1' style='position:absolute;z-index:999;display:inline-block;padding:5px 100px;height:20px;line-height:20px;cursor:default;background:#008000;color:#ffffff;left:"+(($(window).width() - $("#dom1").outerWidth())/2-150)+"px;top:"+$(window).scrollTop()+"px;'>请稍后...</div>";    if($("#dom0")!=undefined) $("#dom0").remove();    if($("#dom1")!=undefined) $("#dom1").remove();    $("body").append(bg);    $("body").append(tip);}function tipHide(){$("#dom1").fadeOut(200,function(){$("body").removeClass("csbd");$("#dom1").remove();$("#dom0").remove();});}
.csbd{overflow:hidden;}
0 0
原创粉丝点击