$(function(){$.extend({coustomToastTipDefaultStyle:function(){return{padding:"12px 18px",borderRadius:"4px",background:"rgba(0,0,0,.7)",zIndex:9999,color:"#fff",position:"fixed",top:"50%",left:"50%",transform:"translate(-50%,-50%)"}},showCoustomToastTip:function(t,o,s){var i=null;s&&s instanceof Object?(i=$.extend(this.coustomToastTipDefaultStyle(),s),console.log(i)):i=this.coustomToastTipDefaultStyle(),this.CoustomToastTip?(this.CoustomToastTip.show(),this.CoustomToastTip.html(t),this.showToastTipTimer&&clearTimeout(this.showToastTipTimer)):(this.CoustomToastTip=$("
"+t+"
"),this.CoustomToastTip.css(i),$("body").append(this.CoustomToastTip)),this.showToastTipTimer=setTimeout(function(){this.CoustomToastTip.hide()}.bind(this),o||3e3)}})});