简单的自定义 jQuery Tooltip 插件:DarkTooltip

jopen 10年前

DarkTooltip 是个简单的自定义 jQuery Tooltip 插件,带有确认选项和 3D 效果。在线演示

<html>  <link rel="stylesheet" href="darktooltip.css">  <script src="jquery-1.10.2.min.js"></script>  <script src="jquery.darktooltip.js"></script>     <div style="padding:200px;">  <a href="#" id="example" data-tooltip="Hello world 1">Example 1</a>  <a href="#" id="light" data-tooltip="Hello world 2">Example 2</a>  </div>     <script>  $(document).ready( function(){  //Basic  $('#example').darkTooltip();  //With some options  $('#light').darkTooltip({  animation:'flipIn',  gravity:'west',  confirm:true,  theme:'light'  });  });  </script>     </html>

简单的自定义 jQuery Tooltip 插件:DarkTooltip

项目主页:http://www.open-open.com/lib/view/home/1393308618240