當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML object usemap用法及代碼示例


HTML usemap屬性用於指定要與該對象一起使用的image-map的名稱。具有某些可點擊區域的圖像稱為image-map。 usemap屬性與關聯度元素的name屬性相關,並在事物與Map之間建立關係。

用法:

<object usemap="#mapname">

屬性值:
#mapname:帶有要使用的Map元素名稱的哈希。



Example:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>HTML img usemap Attribute</title>  
      
    <style>  
        body {  
            text-align:center;  
        }  
          
        h1 {  
            color:green;  
        }  
    </style>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1>  
      
    <h2>HTML <img> usemap Attribute</h2>  
  
    <object src=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165729/area11.png"
        alt="" width="300" height="119" usemap="#shapemap" />  
  
    <map name="shapemap">  
          
        <!-- area tag contained image. -->
        <area shape="poly" coords="59, 31, 28, 83, 91, 83" href=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165802/area2.png"
            alt="Triangle">  
          
        <area shape="circle" coords="155, 56, 26" href=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165934/area3.png"
            alt="Circle">  
          
        <area shape="rect" coords="224, 30, 276, 82" href=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227170021/area4.png"
            alt="Square">  
    </map>  
</body>  
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML對象usemap屬性支持的瀏覽器:

  • IE瀏覽器
  • Firefox



相關用法


注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | object usemap Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。