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


HTML Video paused用法及代碼示例


HTML DOM中的“視頻已暫停”屬性用於返回視頻是否已暫停。它是隻讀屬性。

用法:

videoObject.paused

返回:如果視頻已暫停,則視頻暫停屬性將返回布爾值true,否則返回false。
以下示例程序旨在說明HTML DOM中的Video paused屬性:


例:

<!DOCTYPE html> 
<html> 
  
<head>      
    <title> 
        Video paused Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
      
    <h2 style="font-family:Impact;"> 
        Video paused 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 knowing whether the video is paused or not, 
        double click the "Return Pause State" button. 
    </p> 
      
    <button ondblclick="set()" type="button"> 
        Return Pause State 
    </button> 
      
    <p id="test"></p> 
      
    <script> 
        function set() { 
            var v = document.getElementById("Test_Video").paused; 
            document.getElementById("test").innerHTML = v; 
        }  
    </script> 
</body> 
  
</html>                                                         

輸出:

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

支持的瀏覽器:視頻暫停屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • Internet Explorer 9.0
  • Firefox
  • Opera
  • 蘋果Safari


相關用法


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