css+html+JQuery 万能弹出层,居中显示

function ShowMsg(str) {//要提示的文字
$(".payment_time_mask").remove();
$("body").append("<div class=\"payment_time_mask\" style=\" background-color:#ccc; display:none; text-align: center;z-index: 999;width: 50%;position: absolute;left: 25%;top: 20%;border-radius: 10px;overflow: hidden;\"><span style='font-size: 18px;font-weight:bold;padding: 0.5em;display: block;'>" + str + "</span></div>");
$(".payment_time_mask").fadeToggle(1500);//持续时间
setTimeout("$('.payment_time_mask').fadeToggle(1500);", 1500)
}

猜你喜欢

转载自www.cnblogs.com/liuyizun/p/9186987.html
今日推荐