jquery懸浮提示框完整執行個體,jquery懸浮執行個體
本文執行個體講述了jquery懸浮提示框實現方法。分享給大家供大家參考,具體如下:
<html><head><script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(function() { x = 5; y = 15; $("p").hover(function(e) { otitle = this.title; this.title = ""; var ndiv = "<div id='leo'>" + otitle + "</div>"; $("body").append(ndiv); $("#leo").css({ "top" : (e.pageY + y) + "px", "left" : (e.pageX + x) + "px" }).show(2000); $(this).mousemove(function(e) { $("#leo").css({ "top" : (e.pageY + y) + "px", "left" : (e.pageX + x) + "px" }).show(1000); }); }, function() { this.title = otitle; $("#leo").remove(); }); }); </script> <style type="text/css"> #leo { position: absolute; border: 1px solid grey; opacity: 0.8; background: grey; } </style></head><body> <p title="1dfgfdgdfg">If you click on me, I will disappear.</p> <p title="2dgfdgdfgdf">If you click on me, I will disappear.</p> <p title="3dgfdgfdgfder">If you click on me, I will disappear.</p> <p title="4ghfghfghfhgf">If you click on me, I will disappear.</p></body></html>
希望本文所述對大家jQuery程式設計有所協助。
您可能感興趣的文章:
- 使用jQuery UI的tooltip函數修飾title屬性的氣泡懸浮框
- js點擊出現懸浮窗效果不使用JQuery外掛程式
- jQuery實現仿新浪微博浮動的訊息提示框(可智能定位)
- jquery實現滑鼠滑過顯示提示框的方法
- 編寫自己的jQuery提示框(Tip)外掛程式
- jQuery帶箭頭提示框tooltips外掛程式集錦
- jquery刪除提示框彈出是否刪除對話方塊
- jquery右下角彈出提示框範例程式碼
- Jquery實現滑鼠移上彈出提示框、移出消失思路及代碼
- jquery外掛程式製作 提示框外掛程式實現代碼
- 基於jquery的彈出提示框始終處於視窗的置中位置(類似於alert彈出框的效果)
- 基於JQuery 的訊息提示框效果代碼