คุณสมบัติความกว้างของวิดีโอ HTML DOM ส่งกลับ/ตั้งค่าตัวเลขที่สอดคล้องกับความกว้าง (เป็นพิกเซล) ของสื่อ
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
กลับ ความกว้าง เป็นตัวเลข (px)
mediaObject.width
การตั้งค่าความกว้างเป็นตัวเลข (px)
mediaObject.width = number
เรามาดูตัวอย่างความกว้างของวิดีโอ ทรัพย์สิน −
ตัวอย่าง
<!DOCTYPE html> <html> <head> <title>HTML DOM Video width</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-width</legend> <video id="demo" height="200" width="170" controls><source src="https://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br> <input type="button" onclick="getTrackDetails()" value="Video Not Visible"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var demo = document.getElementById("demo"); function getTrackDetails() { demo.width += 50; divDisplay.textContent = 'Video width: '+demo.width; } </script> </body> </html>
ผลลัพธ์
ก่อนคลิก "ไม่แสดงวิดีโอ" ปุ่ม −
คลิก 'วิดีโอไม่ปรากฏ' ปุ่ม 3 ครั้ง -