/* jQuery 鼠标提示插件 v2.0 https://github.com/28269890/sTips Demo:https://28269890.github.io/sTips */ (function($){ $.fn.sTips = function(options) { var o = $.extend({}, $.fn.sTips.defaults,options); if($("#_sTips").length==0){ $("body").append("
"); } $("#_sTips").hide(); $("#_sTips").bind({ mouseenter:function(){ $("#_sTips").stop(true).fadeTo(o.inTime,o.phy); }, mouseleave:function(){ $("#_sTips").fadeOut(o.outTime); } }); var sTipsPosition = function(e){ var s = $(e).offset(); var x = s.left; var y = s.top - $("#_sTips").outerHeight(); if(o.position=="1"){ x = s.left - $("#_sTips").outerWidth(); y = s.top - $("#_sTips").outerHeight(); } if(o.position=="11"){ x = s.left; y = s.top - $("#_sTips").outerHeight(); } if(o.position=="12"){ x = s.left - $("#_sTips").outerWidth(); y = s.top; } if(o.position=="2"){ x = s.left + $(e).outerWidth(); y = s.top - $("#_sTips").outerHeight(); } if(o.position=="21"){ x = s.left + $(e).outerWidth() - $("#_sTips").outerWidth(); y = s.top - $("#_sTips").outerHeight(); } if(o.position=="22"){ x = s.left + $(e).outerWidth(); y = s.top; } if(o.position=="3"){ x = s.left + $(e).outerWidth(); y = s.top + $(e).outerHeight(); } if(o.position=="31"){ x = s.left + $(e).outerWidth(); y = s.top + $(e).outerHeight() - $("#_sTips").outerHeight(); } if(o.position=="32"){ x = s.left + $(e).outerWidth() - $("#_sTips").outerWidth(); y = s.top + $(e).outerHeight(); } if(o.position=="4"){ x = s.left - $("#_sTips").outerWidth(); y = s.top + $(e).outerHeight(); } if(o.position=="41"){ x = s.left - $("#_sTips").outerWidth(); y = s.top + $(e).outerHeight() - $("#_sTips").outerHeight(); } if(o.position=="42"){ x = s.left ; y = s.top + $(e).outerHeight(); } $("#_sTips").css({ "left": x, "top": y }); } this.each(function(){ var _this = this if(this.alt){this.sTips=this.alt;$(this).removeAttr("alt")}; if(this.title){this.sTips=this.title;$(this).removeAttr("title")}; if(this.sTips==undefined){return}; var titlelength = this.sTips.indexOf("{||}") if(titlelength > 0){ this.sTipsTop = this.sTips.substr(0,titlelength); this.sTipsBody = this.sTips.substr(titlelength + 4,this.sTips.length); }else{ this.sTipsBody = this.sTips; } $(this).on({ mousemove:function(e){ if (o.mouse==0){ return; } var x = e.pageX; var y = e.pageY; if (o.mouse==1){ x -= (o.mousez + $("#_sTips").outerWidth()); y -= (o.mousez + $("#_sTips").outerHeight()); }else if (o.mouse==2){ x += o.mousez; y -= (o.mousez + $("#_sTips").outerHeight()); }else if(o.mouse==3){ x += o.mousez; y += o.mousez; }else if(o.mouse==4){ x -= (o.mousez + $("#_sTips").outerWidth()); y += o.mousez; } if(x + $("#_sTips").outerWidth() >= document.body.clientWidth){ x = document.body.clientWidth - $("#_sTips").outerWidth() ; }; if(y + $("#_sTips").outerHeight() >= document.body.clientHeight){ y = document.body.clientHeight - $("#_sTips").outerHeight() ; }; if (x < 0){x=0} if (y < 0){y=0} $("#_sTips").css({ "left": x, "top": y }); }, mouseenter: function() { $("#_sTips").hide(); $("#_sTips").stop(); $("#_sTips").html(""); if(this.sTipsTop){ $("#_sTips").prepend("