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


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


HTML DOM 視頻結束屬性返回一個布爾值 (true/false),對應於視頻是否已到達結尾。

用法

以下是語法 -

返回布爾值

mediaObject.ended

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

示例

http://tpcg.io/Vry4qQPq

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Video ended</title>
<style>
   * {
      padding:2px;
      margin:5px;
   }
   form {
      width:70%;
      margin:0 auto;
      text-align:center;
   }
   input[type="button"] {
      border-radius:10px;
   }
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>HTML-DOM-Video-ended</legend>
         <video id="demo" width="320" controls><source    src="http://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br>
         <input type="button" onclick="getTrackDetails()" value="How many seconds before the video ends?">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var demo = document.getElementById("demo");
   function getTrackDetails() {
      if(demo.ended === false)
         divDisplay.textContent = 'Video ends in:'+(demo.duration - demo.currentTime)+' seconds';
   }
</script>
</body>
</html>

輸出

點擊前‘How many seconds before the video ends?’按鈕 -

點擊後‘How many seconds before the video ends?’按鈕 -

相關用法


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