当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <a> shape属性用法及代码示例


shape属性与coords属性一起使用,以描述<object>或<img>元素中链接的大小,形状和位置。 HTML 5不支持它。

用法:

<a shape="value">

属性值:


  • default:它用于指定整个区域。
  • rect:用于指定矩形区域。
  • circle:用于指定圆形区域。
  • poly:用于指定多边形区域。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      HTML a shape Attribute 
  </title> 
</head> 
  
<body style="text-align:center"> 
    <object data= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165729/area11.png" 
            alt="shape" 
            type="image/png" 
            usemap="#shapemap"> 
  
        <map name="shapemap"> 
            <!-- a tag contained image. -->
            <a href= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165802/area2.png" 
               shape="poly"
               coords="59, 31, 28, 83, 91, 83"> 
              Polynomial 
          </a> 
  
            <a href= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165934/area3.png" 
               shape="circle" 
               coords="155, 56, 26"> 
              Circle 
          </a> 
  
            <a href= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227170021/area4.png"
               shape="rect" 
               coords="224, 30, 276, 82"> 
              Rectangle 
          </a> 
        </map> 
    </object> 
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML <a> shape属性支持的浏览器:

  • Firefox
  • Opera


相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 HTML | <a> shape Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。