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


HTML Audio paused用法及代碼示例


“音頻暫停”屬性用於返回音頻是否暫停。音頻已暫停屬性是隻讀屬性。

用法:

audioObject.paused

返回:如果音頻已暫停,則音頻暫停屬性將返回布爾值true,否則返回false。


以下示例程序旨在說明音頻暫停屬性:
例:找出音頻是否暫停。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        Audio paused Property 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <h2 style="font-family:Impact"> 
      Audio paused Property 
    </h2> 
    <br> 
  
    <audio id="Test_Audio" controls> 
        <source src="sample1.ogg" 
                type="audio/ogg"> 
        
        <source src="sample1.mp3" 
                type="audio/mpeg"> 
    </audio> 
  
    <p>For knowing whether the audio is paused or not,  
      double click the "Check Status" button.</p> 
    <br> 
  
    <button ondblclick="MyAudio()" 
            type="button"> 
      Check Status 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function MyAudio() { 
            var a = document.getElementById("Test_Audio").paused; 
            document.getElementById("test").innerHTML = a; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:HTML | DOM音頻暫停屬性如下所示:

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


相關用法


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