2.7影像地圖 常用HTML代碼解釋
7.影像地圖(Image Map) <img src="圖形文件名" usemap="#圖的名稱"> <map name="圖的名稱">
<area shape=形狀 coords=區(qū)域座標列表 href="連結點之URL">
<area shape=形狀 coords=區(qū)域座標列表 href="連結點之URL">
<area shape=形狀 coords=區(qū)域座標列表 href="連結點之URL">
<area shape=形狀 coords=區(qū)域座標列表 href="連結點之URL"> </map>
【1】定義形狀 -- shape
shape=rect:矩形 shape=circle:圓形 shape=poly:多邊形
【2】定義區(qū)域 -- coords
a.矩形:必須使用四個數字,前兩個數字為左上角座標,后兩個數字為右下角座標
例:<area shape=rect coords=100,50,200,75 href="URL">
b.圓形:必須使用三個數字,前兩個數字為圓心的座標,最后一個數字為半徑長度
例:<area shape=circle coords=85,155,30 href="URL">
c.任意圖形(多邊形):將圖形之每一轉折點座標依序填入
例:<area shape=poly coords=232,70,285,70,300,90,250,90,200,78 href="URL"
點擊加載更多評論>>