Thuộc tính HTML DOM Video end trả về giá trị boolean (true / false) tương ứng với việc video đã kết thúc hay chưa.
Cú pháp
Sau đây là cú pháp -
Trả về giá trị boolean
mediaObject.ended
Hãy để chúng tôi xem ví dụ về Video DOM HTML đã kết thúc tài sản -
Ví dụ
<!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="https://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>
Đầu ra
Trước khi nhấp vào ‘Còn bao nhiêu giây trước khi video kết thúc?’ nút -
Sau khi nhấp vào ‘Còn bao nhiêu giây trước khi video kết thúc?’ nút -