Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM Video currentTime Thuộc tính

Thuộc tính HTML DOM Video currentTime trả về / đặt vị trí hiện tại của người tìm kiếm (tính bằng giây) của phương tiện.

Sau đây là cú pháp -

Trả lại vị trí người tìm kiếm

mediaObject.currentTime

Đặt currentTime đến vị trí có thể tìm kiếm

mediaObject.currentTime = seconds

Hãy để chúng tôi xem ví dụ về Video currentTime tài sản -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Video currentTime</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-currentTime</legend>
         <video id="demo" width="320" controls><source          src="https://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br>
         <input type="button" onclick="getTrackDetails()" value="Jump some seconds">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var demo = document.getElementById("demo");
   function getTrackDetails() {
      demo.currentTime = '15';
      divDisplay.textContent = 'Some Seconds Avoided';
   }
</script>
</body>
</html>

Đầu ra

Trước khi nhấp vào ‘Nhảy vài giây’ nút -

HTML DOM Video currentTime Thuộc tính

Sau khi nhấp vào ‘Nhảy vài giây’ nút -

HTML DOM Video currentTime Thuộc tính