图片效果如下 淡入 淡出。自适应居中。
function tishi(content,url) {
$(".xiaoxi").remove();
var html = '<div class="xiaoxi none" ></p></div>';
$(document.body).append(html);
$("#msg").show();
$(".msg").html(content);
if(url){
window.setTimeout("location.href='"+url+"'", 1500);
}else{
setTimeout('$("#msg").fadeOut()', 1500);
}
}
tishi('留言成功');