1. 程式人生 > >HTML圖片熱區

HTML圖片熱區

pan target ati tar src log .... 半徑 https

文章來源於:https://www.cnblogs.com/mq0036/p/3337327.html

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 
 4 <head>
 5     <meta charset="UTF-8">
 6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 7     <meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1"
> 8 <title>Document</title> 9 </head> 10 11 <body> 12 <!-- 13 <area shape="rect" coords="x1, y1,x2,y2" href=url>表示設定熱點的形狀為矩形,左上角頂點坐標為(X1,y1),右下角頂點坐標為(X2,y2)。 14 <area shape="circle" coords="x1, y1,r" href=url>表示設定熱點的形狀為圓形,圓心坐標為(X1,y1),半徑為r。
15 <area shape="poligon" coords="x1,y1,x2,y2 ......" href=url>表示設定熱點的形狀為多邊形,各頂點坐標依次為(X1,y1)、(X2,y2)、(x3,y3) ......。 16 --> 17 18 19 <!-- img指熱點圖片,usemap指name為#planetmap的map. area標明具體的地方. coords標明坐標,href則是鏈接 --> 20 <img src="planets.jpg" usemap="#planetmap"
alt="Planets" /> 21 <map name="planetmap" id="planetmap"> 22 <area shape="circle" coords="180,139,14" href="venus.html" alt="Venus" /> 23 <area shape="circle" coords="129,161,10" href="mercur.html" alt="Mercury" /> 24 <area shape="rect" coords="10,0,110,260" href="sun.html" alt="Sun" /> 25 </map> 26 </body> 27 28 </html>

細節圖

技術分享圖片

HTML圖片熱區