标签:css tip out class rem top timeout image gif
//错误提示 function alertWrap(Tiptext) { var oHtml = ‘<div id="errTip"><span>‘ + Tiptext + ‘</span></div>‘; $("#errTip").css({ ‘top‘: ‘0%‘, ‘opacity‘: ‘0‘, ‘z-index‘:‘999‘ }); $("body").append(oHtml); setTimeout(function() { $("#errTip").css({ ‘top‘: ‘50%‘, ‘opacity‘: ‘1‘, ‘z-index‘:‘999‘ }); }, 10) setTimeout(function() { $(‘#errTip‘).css({ ‘top‘: ‘0%‘, ‘opacity‘: ‘0‘, ‘z-index‘:‘-1‘ }); setTimeout(function() { $("#errTip").remove(); }, 500); }, 2000) }
标签:css tip out class rem top timeout image gif
原文地址:http://www.cnblogs.com/q460021417/p/6020446.html