用CSS中的map標籤製作單圖多地區點擊的樣本

來源:互聯網
上載者:User

   map標籤

  定義一個用戶端影像對應。影像地圖(image-map)指帶有可點擊地區的一幅映像。

  area元素永遠嵌套在map元素內部。area元素可定義影像地圖中的地區。

  img標籤中的usemap屬性可引用的map標籤中的id或name屬性(取決於瀏覽器),所以我們應同時向map標籤添加id和name屬性。

  樣本

  例如我們想在下面一張圖實現九個作用區,不切圖,就使用map標籤。

  首先用 ps 得到幾個座標:

  然後代碼實現:

      CSS Code複製內容到剪貼簿
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <img src="cat.jpg" alt="" usemap="#catmap" >
  9. <map name="catmap">
  10. <area shape="rect" coords="0,0,148,139" href ="http://www.baidu.com" target ="_blank" alt="">
  11. <area shape="rect" coords="148,139,295,0" href ="http://www.sina.com" target ="_blank" alt="">
  12. <area shape="rect" coords="295,0,439,140" href ="http://www.qq.com" target ="_blank" alt="">
  13. <area shape="rect" coords="148,139,0,340" href ="http://www.163.com" target ="_blank" alt="">
  14. <area shape="rect" coords="148,139,296,340" href ="http://www.soso.com" target ="_blank" alt="">
  15. <area shape="rect" coords="296,340,439,140" href ="http://sf.gg" target ="_blank" alt="">
  16. <area shape="rect" coords="0,340,148,493" href="http://www.zhihu.com" target ="_blank" alt="">
  17. <area shape="rect" coords="148,493,296,340" href="http://z.cn" target ="_blank" alt="">
  18. <area shape="rect" coords="296,340,436,490" href="http://jd.com" target ="_blank" alt="">
  19. </map>
  20. </body>
  21. </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" 是映像左上方的座標。請注意,定義矩形實際上是定義帶有四個頂點的多邊形的一種簡化方法。(就是說,知道對角的兩個點的座標就行了。)

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.