1. 程式人生 > >帶有可點擊區域的map圖像映射

帶有可點擊區域的map圖像映射

src div name 規則 sha tar http rds utf-8

如果需要規定一個不規則點擊區域可用map圖像映射

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>map圖像映射</title>
</head>

<body>
<img src="3.jpg" border="0" usemap="#picmap"  />
<map id="picmap" name="picmap">
<area shape="circle" coords="20,20,20" href="http://www.baidu.com" target="_blank" alt="123" />
 <area shape="poly" coords="30,0,30,100,80,100" href="http://www.baidu.com" target="_blank" alt="456" />
</map>
</body>
</html>

  

帶有可點擊區域的map圖像映射