真实页面效果:就是一张图

html5 area实例

html代码:

<!DOCTYPE HTML>
<html>
<style>
body{
    padding:0px;
    margin:0px;
}
</style>
<body>
<img src ="images/b.jpg" alt="Planets" usemap ="#planetmap" />
<map id ="planetmap">
<area shape ="rect" coords ="10,10,200,300" href ="sun.htm" alt="Sun" />
<area shape ="circle" coords ="300,200,200" href ="mercur.htm" alt="Mercury" />
<area shape ="circle" coords ="500,240,200" href ="venus.htm" alt="Venus" />
<!--直线-->
<area shape="poly " coords="100,240,200,100,100" href="venus.htm" alt="Venus">
<!--三角形-->
<area shape="poly " coords="100,240,200,100,100,100" href="venus.htm" alt="Venus">
</map>
</body>
</html>

PS:

定义和用法

shape 属性与 coords 属性配合,可以规定区域的尺寸、形状和位置。

详细解释:

shape 属性用于定义图像映射中对鼠标敏感的区域的形状:

  • 圆形(circ 或 circle)
  • 多边形(poly 或 polygon)
  • 矩形(rect 或 rectangle)

 

1、圆形效果图:

html5 area实例

2、长方形效果图:

html5 area实例

3、直线效果图:

html5 area实例

4、三角形效果图:

html5 area实例

相关文章:

  • 2021-12-30
  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-11-15
  • 2021-06-25
猜你喜欢
  • 2022-12-23
  • 2021-12-02
  • 2021-12-02
  • 2021-12-12
  • 2021-12-12
  • 2021-09-23
  • 2022-01-21
相关资源
相似解决方案