当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。