国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

基于jquery的自定義鼠標(biāo)提示效果 jquery.toolTip

2019-11-21 00:08:15
字體:
供稿:網(wǎng)友
IE下效果

Firefox或其它瀏覽器效果


代碼

復(fù)制代碼 代碼如下:

//版權(quán) 酷車中國(guó) www.kuchechina.com
//作者 逐月 zhuyue.cnblogs.com
//演示 http://www.kuchechina.com/carstools/Default.aspx
jQuery.fn.toolTip = function() {
this.unbind().hover(
function(e) {
this.t = this.title;
this.title = '';
$('body').append( '<p id="p_toolTip" style="display:none; max-width:320px;text-align:left;"><img id="img_toolTip_Arrow" src="images/arrow.gif" />' + this.t + '</p>' );
var tip = $('p#p_toolTip').css({ "position": "absolute", "padding": "10px 5px 5px 10px", "left": "5px", "font-size": "14px", "background-color": "white", "border": "1px solid #a6c9e2","line-height":"160%", "-moz-border-radius": "5px", "-webkit-border-radius": "5px", "z-index": "9999"});
var target = $(this);
var position = target.position();
this.top = (position.top - 8); this.left = (position.left + target.width() + 5);
$('p#p_toolTip #img_toolTip_Arrow').css({"position": "absolute", "top": "8px", "left": "-6px" });
tip.css({"top": this.top+"px","left":this.left+"px"});
tip.fadeIn("slow");
},
function() {
this.title = this.t;
$("p#p_toolTip").fadeOut("slow").remove();
}
);
};

使用方法:
復(fù)制代碼 代碼如下:

<script type="text/javascript">
$(document).ready(function(){
$("#tootlsMain img[title]").toolTip();
});
</script>

可以利用jquery 選擇器,選擇帶title屬性的標(biāo)簽,當(dāng)然可以適當(dāng)?shù)男薷拇a使適用帶alt屬性標(biāo)簽。
title屬性支持簡(jiǎn)單html標(biāo)簽。如<br/>等。注意引號(hào)的使用
實(shí)現(xiàn)原理:
利用標(biāo)簽title屬性,使hover事件取代默認(rèn)鼠標(biāo)事件,顯示浮動(dòng)層。this.unbind().hover 就是這句代碼。jquery幫我們做好很多事情。堆積我們的現(xiàn)實(shí)代碼就行。
程序員,文筆一般希望您能看懂。

代碼下載

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 集安市| 茌平县| 沧州市| 瓦房店市| 宁远县| 百色市| 乐平市| 安庆市| 定安县| 东光县| 洪江市| 临沂市| 鹿邑县| 丽江市| 泊头市| 安西县| 积石山| 昭觉县| 西畴县| 邳州市| 香河县| 辽阳县| 稻城县| 九龙城区| 抚顺县| 桦川县| 陆丰市| 余干县| 象州县| 苗栗市| 泰来县| 吕梁市| 祁门县| 黄龙县| 景洪市| 阿荣旗| 成安县| 偃师市| 秭归县| 荣昌县| 青岛市|