HTML <area> 标签
实例
带有可点击区域的图像映射:
<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400"
height="379">
<map name="workmap">
<area shape="rect"
coords="34,44,270,350" alt="计算机" href="computer.htm">
<area
shape="rect" coords="290,172,333,250" alt="电话" href="phone.htm">
<area
shape="circle" coords="337,300,44" alt="一杯咖啡" href="coffee.htm">
</map>
亲自试一试 »
下面有更多实例。
定义和用法
<area>
标签定义图像映射中的区域(注:图像映射指得是带有可点击区域的图像)。
<area>
元素总是嵌套在 <map> 标签中。
注释: <img> 标签中的 usemap 属性与 map 元素 name 属性相关联,创建图像与映射之间的联系。
浏览器支持
元素 | |||||
---|---|---|---|---|---|
<area> | Yes | Yes | Yes | Yes | Yes |
属性
属性 | 值 | 描述 |
---|---|---|
alt | text | 定义此区域的替换文本。 |
coords | coordinates | 定义可点击区域(对鼠标敏感的区域)的坐标。 |
download | filename | 定义浏览器下载 URL 而不是导航到它,因此将提示用户将其保存为本地文件。 |
href | URL | 定义此区域的目标 URL。 |
hreflang | language_code | 该属性用于指定链接文档的语言。其仅提供建议,并没有内置的功能。 |
media | media query | 规定目标 URL 是为何种媒介/设备优化的 |
rel | alternate author bookmark help license next nofollow noreferrer prefetch prev search tag |
规定当前文档与目标 URL 之间的关系。 |
shape |
default rect circle poly |
定义区域的形状。 |
target | _blank _parent _self _top framename |
规定在何处打开 href 属性指定的目标 URL。 |
type | media_type | 规定目标 URL 的 media 类型。 |
全局属性
<area>
标签支持 HTML 中的全局属性。
事件属性
<area>
标签支持 HTML 中的事件属性。
更多实例
实例
另一个带有可点击区域的图像映射:
<img src="planets.gif"
width="145" height="126"
alt="行星"
usemap="#planetmap">
<map
name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="太阳">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="水星">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="金星">
</map>
亲自试一试 »
相关页面
HTML DOM 参考手册: Area 对象
默认CSS设置
大多数浏览器将使用以下默认值显示 <area>
元素:
area {
display: none;
}