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


HTML controls屬性用法及代碼示例


HTML控件屬性用於指定必須顯示音頻和視頻控件。它是布爾屬性,也是HTML5中的新函數。我們可以在兩個標簽<audio>和<video>中使用此屬性

controls屬性在<audio>標記上包含以下屬性:

  • Play
  • Pause
  • Seeking
  • Volume

controls屬性在<video>標記上包含以下屬性:

  • Play
  • Pause
  • Seeking
  • Volume
  • 全屏切換(僅適用於視頻)
  • 字幕/字幕(僅適用於視頻)
  • 跟蹤(僅適用於視頻)

用法:

<element controls> 

下麵的示例說明<audio>元素中控件屬性的用法。



例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML Audio controls Attribute 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green">  
        GeeksforGeeks  
    </h1> 
    <h2 style="font-family:Impact">  
        HTML Audio controls Attribute  
    </h2> 
    <br> 
  
    <audio id="Test_Audio" controls autoplay> 
  
        <source src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190531165842/Recording1514.ogg"
                            type="audio/ogg"> 
  
        <source src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20190531165842/Recording1514.mp3" 
                           type="audio/mpeg"> 
    </audio> 
  
</body> 
  
</html>

輸出:

下麵的示例說明<video>元素中控件屬性的使用。

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>HTML video controls Attribute</title>  
</head>  
  
<body>  
    <center>  
        <h1 style="color:green;">GeeksforGeeks</h1>  
  
        <h3>HTML video controls Attribute</h3>  
  
        <video width="400" height="200" controls >  
            <source src=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190616234019/Canvas.move_.mp4"
                    type="video/mp4">  
            <source src=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190616234019/Canvas.move_.ogg"
                    type="video/ogg">  
        </video>  
    </center>  
</body>  
  
</html> 

輸出:

支持的瀏覽器:下麵列出了HTML控件“屬性”支持的瀏覽器:

  • 穀歌瀏覽器4.0
  • Internet Explorer 9.0
  • Firefox 3.5
  • Safari 4.0
  • Opera 10.5




相關用法


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