显示信息

function um_tip(text,type,time){
var time = time || 1000 ;
var str = "";
str += '<div class="um-tip-mask"><div class="um-tip">';
str += text+'</div></div>';
$("body").append(str);
//高度中和
var h = $(".um-tip").height()/2;
var w = $(".um-tip").width()/2;
$(".um-tip").css({"marginTop":-h,"marginLeft":-w});
if(type=="auto"){
setTimeout(function(){
$(".um-tip").animate({"top":"30%"},500);
$(".um-tip-mask").fadeOut(500);
setTimeout(function(){
$(".um-tip-mask").remove();
},500);
},time);
}
}

 

posted @ 2017-12-22 15:16  张朝阳的博客  阅读(176)  评论(0编辑  收藏  举报