显示信息

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);
}
}
原文地址:https://www.cnblogs.com/zhangzhaoyang/p/8086132.html