基本信息
源码名称:使用js自定义写tooltip控件
源码大小:0.04M
文件格式:.zip
开发语言:js
更新时间:2016-03-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍




<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Tooltips悬停提示效果</title>
<meta charset="gb2312" />

<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 href="http://www.jb51.net/" target="_blank"><span id="fackbook" class="tooltip" title="CHINAZ">CHINAZ</span></a>
</ul>
</section>
 
<section id="twitter">
<ul> 
<a href="http://www.jb51.net/" target="_blank"><span id="twitter-default" class="tooltip" title="脚本之家">脚本之家</span></a>
</ul>
</section>
 
 
<section id="google">
<ul> 
<a href="http://www.jb51.net/" target="_blank"><span id="google-default" class="tooltip" title="jQuery">jQuery</span></a>
</ul>
</section>
 

<section id="rss">
<ul> 
<a href="http://www.jb51.net/" target="_blank"><span id="rss-default" class="tooltip" title="脚本之家">脚本之家</span></a>
</ul>
</section>

<section id="tech">
<ul> 
<a href="http://www.jb51.net/"><span id="tech-default" class="tooltip" title="CSS3">CSS3</span></a>
</ul>
</section>
</center>

<section id="dribbble">
<ul> 
<a href="http://www.jb51.net/" target="_blank"><span id="dribbble-default" class="tooltip" title="HTML5">HTML5</span></a>
</ul>
</section><br>
<br>
<br>
<br>
<br>

<div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';">
<p>适用浏览器:360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗. 不支持IE8及以下浏览器。</p>

</div>
</body>
</html>