0

我正在使用线索提示 jquery 插件,我想在工具提示弹出窗口中显示加载图像。

就像脸书一样。它在弹出窗口中显示“正在加载...”文本,然后显示数据。

谢谢

4

1 回答 1

0

这是一个可以帮助您的演示

我的根文件夹包含以下文件

  • 索引.html
  • 演示.html
  • jquery.cluetip.css
  • jquery.cluetip.js
  • jquery.min.js
  • 考拉.jpg

我的 index.html 有以下代码

 <html >
    <head>

      <link rel="stylesheet" href="jquery.cluetip.css" type="text/css" />
        <script src="jquery.min.js"></script> 
      <script src="jquery.cluetip.js"></script>

      <script type="text/javascript">
           $(document).ready(function() {
             $('a.sticky').cluetip();
             $('#sticky').cluetip({
               arrows: true,
               sticky: true,
               tracking: true,
               mouseOutClose: true,
               closePosition: 'title',    
               cursor: 'pointer'
             });
           });
      </script>
     </head>

      <body >

       <strong>Demo for tooptip</strong> <br>
      <a id="sticky" href="#" rel="demo.html" title="Demo">ToopTip with arrows</a>

      </body>
      </html>

这是 demo.html 的代码

  <html >
     <head>
     </head>
   <body class="page">

  <img src="Koala.jpg" width="65" height="65" alt="Koala" />
  <p>The koala is an arboreal herbivorous marsupial native to Australia, and the only extant representative of the family Phascolarctidae.</p>

    </body>
  </html>

现在打开 index.html 页面并让线索提示工作

于 2013-03-28T07:27:46.563 回答