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


HTML Video currentTime用法及代碼示例


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

用法:

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

屬性值:


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

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM Video currentTime Property 
    </title>    
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2> 
      Video currentTime Property 
    </h2> 
    <br> 
  
    <video id="Test_Video" 
           width="360" 
           height="240" 
           controls> 
        <source src="samplevideo.mp4"
                type="video/mp4"> 
        <source src="movie.ogg"
                type="video/ogg"> 
    </video> 
  
    <p> 
      For setting the current video playback position, 
      double click the "Change Position" button. 
    </p> 
  
    <button ondblclick="My_Video()"
            type="button"> 
      Change Position 
    </button> 
  
    <script> 
        var v = document.getElementById("Test_Video"); 
  
        function My_Video() { 
            v.currentTime = 50; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

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

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

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


相關用法


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