<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <img src="img/1.jpg" border="0" usemap="#map" /> <map name="map"> <area shape="rect" coords="20,20,40,40" href="http://www.baidu.com" /> <area shape="circle" coords="80,70,20" href="clearfix.html" /> <area shape="poly" coords="280,323,323,435,100,300,287,45,34,344" href="position.html" /> </map> </body> </html>
usemap="#map" ,map為熱點區域
area的三個屬性:
shape:
rect(
矩形
):coords的四個數值分明別表示左上角、右下角兩個點橫縱坐標,單位為像素。
circle(圓形):
coords的三個數值分明別表示圓心橫縱坐標及半徑
,單位為像素。
poly(多邊形):coords的多個數值分別表示各個頂點的橫縱坐標
,單位為像素。