jquery懸浮提示框完整執行個體,jquery懸浮執行個體

來源:互聯網
上載者:User

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 的訊息提示框效果代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.