用CSS中的map标签制作单图多区域点击的示例

江南的古屋主要以青砖为材料,砖与砖的缝隙里挤挤挨挨地塞满了苔藓与野草,几根木制的横梁点缀其间。

map标签

定义一个客户端图像映射。图像映射(image-map)指带有可点击区域的一幅图像。

area元素永远嵌套在map元素内部。area元素可定义图像映射中的区域。
img标签中的usemap属性可引用的map标签中的id或name属性(取决于浏览器),所以我们应同时向map标签添加id和name属性。

示例

例如我们想在下面一张图实现九个热点区域,不切图,就使用map标签。

首先用 ps 得到几个坐标:

然后代码实现:

CSS Code复制内容到剪贴板
  1. <!DOCTYPEhtml>
  2. <htmllang="en">
  3. <head>
  4. <metacharset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <imgsrc="cat.jpg"alt=""usemap="#catmap">
  9. <mapname="catmap">
  10. <areashape="rect"coords="0,0,148,139"rel="nofollow noopener noreferrer" href="http://www.baidu.com"target="_blank"alt="">
  11. <areashape="rect"coords="148,139,295,0"rel="nofollow noopener noreferrer" href="http://www.sina.com"target="_blank"alt="">
  12. <areashape="rect"coords="295,0,439,140"rel="nofollow noopener noreferrer" href="http://www.qq.com"target="_blank"alt="">
  13. <areashape="rect"coords="148,139,0,340"rel="nofollow noopener noreferrer" href="http://www.163.com"target="_blank"alt="">
  14. <areashape="rect"coords="148,139,296,340"rel="nofollow noopener noreferrer" href="http://www.soso.com"target="_blank"alt="">
  15. <areashape="rect"coords="296,340,439,140"rel="nofollow noopener noreferrer" href="http://sf.gg"target="_blank"alt="">
  16. <areashape="rect"coords="0,340,148,493"rel="nofollow noopener noreferrer" href="http://www.zhihu.com"target="_blank"alt="">
  17. <areashape="rect"coords="148,493,296,340"rel="nofollow noopener noreferrer" href="http://z.cn"target="_blank"alt="">
  18. <areashape="rect"coords="296,340,436,490"rel="nofollow noopener noreferrer" 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" 是图像左上角的坐标。请注意,定义矩形实际上是定义带有四个顶点的多边形的一种简化方法。(就是说,知道对角的两个点的坐标就行了。)

本文用CSS中的map标签制作单图多区域点击的示例到此结束。如果我们有着快乐的思想,我们就会快乐;如果我们有着凄惨的思想,我们就会凄惨。小编再次感谢大家对我们的支持!

标签: CSS map