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


HTML Video startDate用法及代碼示例


Video startDate屬性用於返回一個Date對象,該對象表示視頻的當前時間軸偏移量。 Video startDate屬性的應用程序用於使Internet上實時流視頻的準確同步。

用法:

videoObject.startDate

以下示例程序旨在說明Video startDate()屬性:
例:獲取視頻的當前時間軸偏移量。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
         Video startDate() Property 
    </title> 
</head> 
  
<body style="text-align:center"> 
  
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <h2 style="font-family:Impact"> 
      Video startDate() Property 
    </h2> 
    <br> 
  
    <video id="Test_Video" 
           width="360" 
           height="240" 
           controls> 
        
        <source id="mp4_source" 
                src="sample2.mp4" 
                type="video/mp4"> 
        
        <source id="ogg_source" 
                src="sample2.ogg" 
                type="video/ogg"> 
    </video> 
  
    <p>To get the current timeline offset of 
      the video, double click the "Return  
      Timeline Offset" button.</p> 
    <br> 
  
    <button ondblclick="My_Video()"> 
      Return Timeline Offset 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Video() { 
            var v = 
                document.getElementById( 
                  "Test_Video").startDate; 
            
            document.getElementById( 
              "test").innerHTML = v; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

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

支持的瀏覽器:HTML |不支持主要瀏覽器。 DOM Video startDate屬性。



相關用法


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