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


HTML DOM Video paused屬性用法及代碼示例


HTML DOM Video paused 屬性返回與視頻是否正在播放相對應的布爾值 (true/false)。

用法

以下是語法 -

返回布爾值

mediaObject.paused

讓我們看一個例子HTML DOM Video paused屬性 -

示例

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Video paused</title>
<style>
   * {
      padding:2px;
      margin:5px;
   }
   form {
      width:70%;
      margin:0 auto;
      text-align:center;
   }
   input[type="button"] {
      border-radius:10px;
   }
   .dimLight {
      background-color:#000;
   }
</style>
</head>
<body>
   <form class="dimLight" id="formSelect">
      <fieldset>
         <legend>HTML-DOM-Video-paused</legend>
         <div onclick="getTrackDetails()">
         <video id="demo" width="320" controls><source    src='http://www.tutorialspoint.com/html5/foo.mp4' type="video/mp4"></video><br>
         </div></fieldset></form>
<script>
   var formSelect = document.getElementById("formSelect");
   var demo = document.getElementById("demo");
   demo.autoplay = true;
   function getTrackDetails() {
      if(demo.paused)
         formSelect.classList.add('dimLight');
      else
         formSelect.classList.remove('dimLight');
   }
</script>
</body>
</html>

輸出

在點擊視頻暫停之前 -

單擊視頻暫停後 -

相關用法


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