本文實例講述了jQuery懸停文字提示框插件jquery.tooltipster.js用法。分享給大家供大家參考,具體如下:
index.html頁面:
<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Tooltips懸停文字提示框效果</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/tooltipster.css" />
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<script type="text/javascript" src="js/jquery-2.0.0.min.js"></script>
<script type="text/javascript" src="js/jquery.tooltipster.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.tooltip').tooltipster();
});
</script>
</head>
<body>
<br><br><br><br><br><br><br><br>
<section id="facebook">
<ul>
<a target="_blank"><span id="fackbook" class="tooltip" title="jb51.net">jb51.net</span></a>
</ul>
</section>
<section id="twitter">
<ul>
<a target="_blank"><span id="twitter-default" class="tooltip" title="JS腳本代碼">JS腳本代碼</span></a>
</ul>
</section>
<section id="google">
<ul>
<a target="_blank"><span id="google-default" class="tooltip" title="jQuery">jQuery</span></a>
</ul>
</section>
<section id="rss">
<ul>
<a target="_blank"><span id="rss-default" class="tooltip" title="JS腳本代碼">JS腳本代碼</span></a>
</ul>
</section>
<section id="tech">
<ul>
<a ><span id="tech-default" class="tooltip" title="CSS3">CSS3</span></a>
</ul>
</section>
</center>
<section id="dribbble">
<ul>
<a target="_blank"><span id="dribbble-default" class="tooltip" title="HTML5">HTML5</span></a>
</ul>
</section><br>
<br>
<br>
<br>
<br>
</body>
</html>
希望本文所述對大家jQuery程序設計有所幫助。