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


HTML <area> media屬性用法及代碼示例


HTML區域媒體屬性用於指定目標URL優化的媒體或設備。
此屬性指定樣式用於特定設備,例如印刷媒體或語音。該屬性可以接受多個值。僅當href屬性存在時使用。此屬性純粹是建議性的。

用法:

<area media="value">

可能的操作符:


描述
and AND運算符
not 非運算符
或運算符

設備:

描述
all 適用於所有設備
aural 語音合成器
braille 盲文反饋設備
handheld 手持設備(小屏幕,帶寬有限)
projection Projectors
print 打印預覽模式/打印頁麵
screen 電腦屏幕
tty 使用固定間距字符網格的電傳打字機和類似媒體
tv 低分辨率或滾動能力有限的設備,例如電視。

值:

描述
width 目標顯示區域的寬度。
height 目標顯示區域的高度
device-width 目標顯示或紙張的寬度。
device-height 目標顯示或紙張的高度。
orientation 目標顯示或紙張的方向。
aspect-ratio 目標顯示區域的寬高比。
device-aspect-ratio 目標顯示器/紙張的Device-width /device-height比。
color 目標顯示的每種顏色的位數。
color-index 目標顯示器可以處理的顏色數。
monochrome 單色幀緩衝區​​中每個像素的位數。
resolution 目標顯示屏/紙張的像素密度(dpi或dpcm)。
scan 電視顯示器的掃描方法。
grid 如果輸出設備是網格或位圖。

注意:可以使用前綴“ min-”和“ max-”。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML area rel Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165729/area11.png" 
         alt="" 
         width="300"
         height="119" 
         class="aligncenter" 
         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" 
              rel="alternate"
              media="screen and (min-color-index:256)"> 
  
        <area shape="circle" 
              coords="155, 56, 26" 
              href= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165934/area3.png" 
              alt="Circle"
              rel="alternate"> 
  
        <area shape="rect"
              coords="224, 30, 276, 82" 
              href= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190227170021/area4.png"
              alt="Square" 
              rel="alternate"> 
    </map> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML區域媒體屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


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