英 [mæp]   美 [mæp]  

n.地图,天体图;类似地图的事物;〈美俚〉脸,面孔;(染色体上基因排列的)遗传图

vt.绘制(一地区等的)地图;勘查;详细规划;[遗传学]比对

第三人称单数: maps 复数: maps 现在分词: mapping 过去式: mapped 过去分词: mapped

html map标签 语法

作用:定义一个客户端图像映射。

说明:图像映射(image-map)指带有可点击区域的一幅图像。

注释:area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域。<img>中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map> 添加 id 和 name 属性。

html map标签 示例

<html>
<body>

<img
src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg"
border="0" usemap="#planetmap"
alt="Planets" />

<map name="planetmap" id="planetmap">

<area
shape="circle"
coords="180,139,14"
href ="//m.sbmmt.com/example/html/venus.html"
target ="_blank"
alt="Venus" />

<area
shape="circle"
coords="129,161,10"
href ="//m.sbmmt.com/example/html/venus.html"
target ="_blank"
alt="Mercury" />

<area
shape="rect"
coords="0,0,110,260"
href ="//m.sbmmt.com/example/html/venus.html"
target ="_blank"
alt="Sun" />

</map>

<p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>

</body>
</html>

热门推荐

最新文章