HTML 5 <img> usemap 属性
实例
带有可点击区域的图像映射:
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"
/>
<map id="planetmap">
<area shape ="rect" coords ="0,0,110,260" href ="sun.htm" alt="Sun" />
<area shape ="circle" coords ="129,161,10" href ="mercur.htm" alt="Mercury" />
<area shape ="circle" coords ="180,139,14" href ="venus.htm" alt="Venus" />
</map>
HTML 4.01 与 HTML 5 之间的差异
无差别。
语法
<img usemap="#mapname" />
属性值
值 | 描述 |
---|---|
#mapname | 井号(#) + 要使用的 map 元素名称或 id |