HTML <map> 标签有什么作用?
<area>标记主要用于图像地图,通过该标记可以在图像地图中设定作用区域(又称为热点),这样当用户的鼠标移到指定的作用区域点击时,会自动链接到预先设定好的页面。其基本语法结构如下:
<area class=type id=Value href=url alt=text shape=area-shape coods=value>
shape和coords:是两个主要的参数,用于设定热点的形状和大小。其基本用法如下:
<area shape="rect" coords="x1, y1,x2,y2" href=/it-htmltag/url>表示设定热点的形状为矩形,左上角顶点_a/index.html class="inlink" href="/tag/坐标/index.html" target="_blank">坐标为(X1,y1),右下角顶点坐标为(X2,y2)。
<area shape="circle" coords="x1, y1,r" href=/it-htmltag/url>表示设定热点的形状为圆形,圆心坐标为(X1,y1),半径为r。_/span/index.html>
<area shape="poligon" coords="x1, y1,x2,y2 ......" href=/it-htmltag/url>表示设定热点的形状为_a/index.html class="inlink" href="/tag/多边形/index.html" target="_blank">多边形,各顶点坐标依次为(X1,y1)、(X2,y2)、(x3,y3) ......。
<area>标记是在图像地图中划分作用区域的,因此其划分的作用区域必须在图像地图的区域内,所以在用 <area> 标记划分区域前必须用HTML的另一个标记<map>来设定图像地图的作用区域,并为指定的图像地图设定名称,该标记的用法很简单,即<map name="图像地图名称"> ...... </map>。
带有可点击区域的图像映射:
<img src="/it-htmltag/planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="/it-htmltag/sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="/it-htmltag/mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="/it-htmltag/venus.htm" alt="Venus">
</map>
目前大多数浏览器支持 <map>标签。
标签定义及使用说明
<map> 标签用于客户端图像映射。图像映射指带有可点击区域的一幅图像。
<img>中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map> 添加 id 和 name 属性。
area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域。
HTML中区<map> 标签和 <area>标签的用法代码实例
<map name="map">
<area shape="rect" coords="75,75,99,99" nohref="/it-htmltag/nohref/index.html">
<area shape="circ" coords="50,50,25" nohref="/it-htmltag/nohref/index.html">
</map>
HTML 4.01 与 HTML5之间的差异
注意: 在 HTML5 中, 如果 id 属性在<map> 标签中指定, 则你必须同样指定 name 属性。
HTML 与 XHTML 之间的差异
在 XHTML 中,name 属性已经废弃,使用 id 属性替换它。
属性
属性 | 值 | 描述 |
---|
name | mapname | 必需。为 image-map 规定的名称。 |
<map> 标签支持全局属性,查看完整属性表 HTML全局属性。
<map> 标签支持所有 HTML事件属性。