网页图上坐标coords 属性链接代码
效果:点击预览
标签的 coords 属性定义了客户端图像映射中对鼠标敏感的区域的坐标。坐标的数字及其含义取决于 shape 属性中决定的区域形状。可以将客户端图像映射中的超链接区域定义为矩形、圆形或多边形等。
下面列出了每种形状的适当值:
圆形:shape="circle",coords="x,y,z"
这里的 x 和 y 定义了圆心的位置("0,0" 是图像左上角的坐标),r 是以像素为单位的圆形半径。
多边形:shape="polygon",coords="x1,y1,x2,y2,x3,y3,..."
每一对 "x,y" 坐标都定义了多边形的一个顶点("0,0" 是图像左上角的坐标)。定义三角形至少需要三组坐标;高纬多边形则需要更多数量的顶点。
多边形会自动封闭,因此在列表的结尾不需要重复第一个坐标来闭合整个区域。
矩形:shape="rectangle",coords="x1,y1,x2,y2"
第一个坐标是矩形的一个角的顶点坐标,另一对坐标是对角的顶点坐标,"0,0" 是图像左上角的坐标。请注意,定义举行实际上是定义带有四个顶点的多边形的一种简化方法。
例如,下面的 XHTML 片段在一个 100x100 像素图像的右下方四分之一处,定义了一个对鼠标敏感的区域,并在图像的正中间定义了一个圆形区域。
提示和注释
注释:如果某个 area 标签中的坐标和其他区域发生了重叠,会优先采用最先出现的 area 标签。浏览器会忽略超过图像边界范围之外的坐标。
代码:
<html> <head> <title>好我要网四大分站</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style>
</head>
<body> <div align="center"></div> <table width="774" height="418" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center"><img src="zuobiao.jpg" width="1000" height="596" border="0" usemap="#Map"></td> </tr> </table> <map name="Map"> <area shape="rect" coords="625,104,823,191" href="http://www.hao51xx.com" target="_blank"> <area shape="rect" coords="660,202,874,272" href="http://www.hao51xx.com/user/tool/dh/index.htm" target="_blank"><area shape="rect" coords="675,303,829,378" href="http://www.hao51xx.com/user/tool/tv/index.htm" target="_blank"> <area shape="rect" coords="657,404,873,476" href="http://www.hao51xx.com/user/tool/index.htm" target="_blank"> </map></body> </html>
|