编写仿国外网站的一个鼠标提示效果源码
目标网站:http://www.vreplay.com/our-work
用的是JQ
以下是我仿的效果,基本的功能都实现了,可以判断提示层如果右侧的距离不够则在左侧显示,大家把浏览器窗口弄小点就可以看到效果了。
欢迎优化代码!!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>tips - Mykite.cn</title>
<style type="text/css">
*{margin:0;padding:0;}
img{border:0;display:block;}
body{background:#000;}
.wraper{width:500px;margin:0 auto;}
.wraper ul{list-style:none;}
.wraper li{float:left;margin:5px;}
.wraper li img{border:1px #ccc solid;}
#show_detail{position:absolute;background:url(http://www.mykite.cn/demo/tips/images/bg.png);
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='http://www.mykite.cn/demo/tips/images/bg.png'); _background-image: none;
padding:9px;border:1px #fff solid;}
</style>
</head>
<body>
<div class="wraper">
<ul id="imgList">
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s1.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s2.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s3.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s4.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s5.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s6.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s7.jpg" width="100" height="80" /></a></li>
<li><a href="#"><img src="http://www.mykite.cn/demo/tips/images/s8.jpg" width="100" height="80" /></a></li>
</ul>
</div>
<script type="text/javascript" src="http://www.mykite.cn/demo/tips/js/tips.js"></script>
</body>
</html>