以下是 jquery开发的地图热点特效js代码 的示例演示效果:
部分效果截图:
HTML代码(index.html):
<!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>
<title>jquery开发的地图热点特效</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script language="javascript" src="js/jquery-1.6.4.min.js"></script>
<style type="text/css">
#Con {text-align:center}
.mapDiv { width:140px; height:61px; padding: 5px; color:#369; background: url('images/eg/bg.gif') no-repeat; position:absolute; display: none; word-break:break-all; }
</style>
</head>
<body>
<div id="Con" class="ConDiv">
<img border="0" usemap="#Map" src="images/eg/map.png" />
<map name="Map" id="Map">
<area id="beijing" alt="北京" href="" coords="354,140,380,153" shape="rect">
<area id="shanghai" alt="上海" href="" coords="434,246,462,259" shape="rect">
<area id="tianjin" alt="天津" href="" coords="382,168,408,180" shape="rect">
<area id="chongqing" alt="重庆" href="" coords="294,264,320,276" shape="rect">
<area id="hebei" alt="河北" href="" coords="347,174,374,186" shape="rect">
<area id="shanxi" alt="山西" href="" coords="322,186,348,198" shape="rect">
<area id="neimenggu" alt="内蒙古" href="" coords="349,110,388,124" shape="rect">
<area id="liaoning" alt="辽宁" href="" coords="406,128,432,140" shape="rect">
<area id="jilin" alt="吉林" href="" coords="427,101,454,115" shape="rect">
<area id="heilongjiang" alt="黑龙江" href="" coords="424,58,464,73" shape="rect">
<area id="jiangsu" alt="江苏" href="" coords="404,224,417,250" shape="rect">
<area id="zhejiang" alt="浙江" href="" coords="413,265,427,291" shape="rect">
<area id="anhui" alt="安徽" href="" coords="382,236,395,263" shape="rect">
<area id="fujian" alt="福建" href="" coords="399,300,413,327" shape="rect">
<area id="jiangxi" alt="江西" href="" coords="371,286,385,313" shape="rect">
<area id="shandong" alt="山东" href="" coords="373,196,399,208" shape="rect">
<area id="henan" alt="河南" href="" coords="337,228,364,239" shape="rect">
<area id="hubei" alt="湖北" href="" coords="329,258,356,271" shape="rect">
<area id="hunan" alt="湖南" href="" coords="325,294,352,306" shape="rect">
<area id="guangdong" alt="广东" href="" coords="356,343,382,355" shape="rect">
<area id="guangxi" alt="广西" href="" coords="302,343,328,355" shape="rect">
<area id="hainan" alt="海南" href="" coords="313,398,340,411" shape="rect">
<area id="sichuan" alt="四川" href="" coords="239,265,265,277" shape="rect">
<area id="guizhou" alt="贵州" href="" coords="283,311,308,324" shape="rect">
<area id="yunnan" alt="云南" href="" coords="225,337,251,349" shape="rect">
<area id="shaanxi" alt="陕西" href="" coords="303,224,316,251" shape="rect">
<area id="gansu" alt="甘肃" href="" coords="179,156,205,168" shape="rect">
<area id="qinghai" alt="青海" href="" coords="174,206,200,218" shape="rect">
<area id="ningxia" alt="宁夏" href="" coords="277,188,290,212" shape="rect">
<area id="xinjiang" alt="新疆" href="" coords="85,140,111,152" shape="rect">
<area id="xizang" alt="西藏" href="" coords="87,249,113,261" shape="rect">
<area id="xianggang" alt="香港" href="" coords="379,358,406,370" shape="rect">
<area id="aomen" alt="澳门" href="" coords="349,371,375,383" shape="rect">
<area id="taiwan" alt="台湾" href="" coords="434,322,448,348" shape="rect">
</map>
<script language="javascript">
$(function(){
$("area").each(function(){
var $x=-70;
var $y=-80;
var name=$(this).attr("alt");
$(this).mouseover(function(e){
var index_num=$(this).index();
var dom="<div class='mapDiv'><p>提示消息<span class='name'></span><span class='num'></span></p></div>";
$("body").append(dom);
$(".name").text(name);
$(".num").text(index_num)
$(".mapDiv").css({
top: (e.pageY + $y)+"px",
left: (e.pageX + $x)+"px"
}).show("fast");
}).mouseout(function(){
$(".mapDiv").remove();
}).mousemove(function(e){
$(".mapDiv").css({
top: (e.pageY + $y)+"px",
left: (e.pageX + $x)+"px"
})
});
});
});
</script>
</div>
</body>
</html>