我在html / php页面上有一个大图像,我想知道如何指定图像的某些部分,以便在悬停时显示不同的工具提示。
编辑:我在另一篇文章中发现了这段代码,如何让它显示工具提示而不是警告?我如何指定超过1个悬停区域?<html>
<head>
<script language="JavaScript">
function getDetails(obj){
clickX = window.event.x-obj.offsetLeft;
clickY = window.event.y-obj.offsetTop;
if((clickX>=100&&clickX<=200)&&(clickY>=100&&clickY<=200))
{
alert(" You are between (100,100) And (200,200) of the Image");
}
}
</script>
</head>
<body>
<img src="image.jpg" onMousemove="getDetails(this)" id="myimg" height="500" width="500" />
</body>
</html>
对不起,我还在了解这个网站的运作方式。提前谢谢!
答案 0 :(得分:4)
使用HTML地图标记,然后为每个区域定义标题。
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" title="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" title="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" title="Venus">
</map>