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


HTML muted屬性用法及代碼示例


HTML靜音屬性用於指定視頻的音頻輸出被靜音,它是一個布爾屬性。

適用的:

  • <視頻>

用法

<video muted>

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML muted Attribute 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2 style="font-family:Impact"> 
      HTML  muted Attribute 
  </h2> 
    <br> 
  
    <video id="Test_Video" 
           width="360"
           height="240" 
           controls muted> 
  
        <source src="samplevideo.mp4" 
                type="video/mp4"> 
  
        <source src="samplevideo.ogg"
                type="video/ogg"> 
    </video> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML靜音屬性支持的瀏覽器:

  • 穀歌瀏覽器4.0
  • Internet Explorer 10.0
  • Firefox 11.0
  • 蘋果Safari 7.1
  • Opera 10.5

相關用法


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