html——map标签(引用w3c)

<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" />

<map name="planetmap" id="planetmap">
  Venus
  Mercury
  Sun
map>

定义一个客户端图像映射。图像映射(image-map)指带有可点击区域的一幅图像。

shape = 'rect / circle / polygon'
coods = 'x1,y1,x2,y2 / x,y,r / x1,y1,x2,y2,x3,...'

area可选属性

coords 坐标值 定义可点击区域(对鼠标敏感的区域)的坐标。

href URL 定义此区域的目标 URL。

nohref nohref 从图像映射排除某个区域。

shape

default
rect
circ
poly
定义区域的形状。

target

_blank
_parent
_self
_top
规定在何处打开 href 属性指定的目标 URL。

你可能感兴趣的:(html,和,css)