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


HTML Audio currentTime用法及代碼示例


Audio currentTime屬性用於設置或返回音頻播放的當前位置。 Audio currentTime屬性以秒的形式返回音頻播放位置。設置此屬性後,播放跳至指定位置。

用法:

    • 返回currentTime屬性:
      audioObject.currentTime
    • 設置currentTime屬性:
      audioObject.currentTime = seconds

    屬性值:


    • seconds:用於以秒為單位指定視頻播放的位置。

    以下示例程序旨在說明音頻currentTime屬性:
    例:將時間位置設置為50秒。

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <title> 
            Audio currentTime Property 
        </title> 
    </head> 
      
    <body style="text-align:center"> 
      
        <h1 style="color:green"> 
          GeeksforGeeks 
        </h1> 
        <h2 style="font-family:Impact"> 
          Audio currentTime Property 
        </h2> 
        <br> 
      
        <audio id="Test_Audio" 
               controls autoplay> 
            <source src="sample1.ogg" 
                    type="audio/ogg"> 
            <source src="sample1.mp3" 
                    type="audio/mpeg"> 
        </audio> 
      
        <p>To changing the current playback position,  
          double click the "Change Playback Position"  
          button.</p> 
        <br> 
      
        <button ondblclick="My_Audio()"> 
          Change Playback Position 
        </button> 
      
        <p id="test"></p> 
      
        <script> 
            var a = document.getElementById("Test_Audio"); 
      
            function My_Audio() { 
                a.currentTime = 50; 
            } 
        </script> 
      
    </body> 
      
    </html>

    輸出:

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

    支持的瀏覽器:HTML支持的瀏覽器|下麵列出了DOM Audio currentTime屬性:

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


相關用法


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