map標籤
定義一個用戶端影像對應。影像地圖(image-map)指帶有可點擊地區的一幅映像。
area元素永遠嵌套在map元素內部。area元素可定義影像地圖中的地區。
img標籤中的usemap屬性可引用的map標籤中的id或name屬性(取決於瀏覽器),所以我們應同時向map標籤添加id和name屬性。
樣本
例如我們想在下面一張圖實現九個作用區,不切圖,就使用map標籤。
首先用 ps 得到幾個座標:
然後代碼實現:
CSS Code複製內容到剪貼簿
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- </head>
- <body>
- <img src="cat.jpg" alt="" usemap="#catmap" >
- <map name="catmap">
- <area shape="rect" coords="0,0,148,139" href ="http://www.baidu.com" target ="_blank" alt="">
- <area shape="rect" coords="148,139,295,0" href ="http://www.sina.com" target ="_blank" alt="">
- <area shape="rect" coords="295,0,439,140" href ="http://www.qq.com" target ="_blank" alt="">
- <area shape="rect" coords="148,139,0,340" href ="http://www.163.com" target ="_blank" alt="">
- <area shape="rect" coords="148,139,296,340" href ="http://www.soso.com" target ="_blank" alt="">
- <area shape="rect" coords="296,340,439,140" href ="http://sf.gg" target ="_blank" alt="">
- <area shape="rect" coords="0,340,148,493" href="http://www.zhihu.com" target ="_blank" alt="">
- <area shape="rect" coords="148,493,296,340" href="http://z.cn" target ="_blank" alt="">
- <area shape="rect" coords="296,340,436,490" href="http://jd.com" target ="_blank" alt="">
- </map>
- </body>
- </html>
就是這樣。
關於area
area 可以是圓形(circ),多邊形(poly),矩形(rect),不同形狀要選取不同的座標(coords).
圓形:shape="circle",coords="x,y,z"
x,y為圓心座標(x,y),z為圓的半徑
多邊形:shape="polygon",coords="x1,y1,x2,y2,x3,y3,..."
每一對x,y座標都定義了多邊形的一個頂點(0,0) 是映像左上方的座標)。定義三角形至少需要三組座標;高緯多邊形則需要更多數量的頂點。
矩形:shape="rectangle",coords="x1,y1,x2,y2"
第一個座標是矩形的一個角的頂點座標,另一對座標是對角的頂點座標,"0,0" 是映像左上方的座標。請注意,定義矩形實際上是定義帶有四個頂點的多邊形的一種簡化方法。(就是說,知道對角的兩個點的座標就行了。)