ใช้ โปสเตอร์ แอตทริบิวต์ใน HTML เพื่อตั้งค่ารูปภาพที่จะแสดงในขณะที่กำลังดาวน์โหลดวิดีโอ
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน โปสเตอร์ แอตทริบิวต์ −
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" poster = "https://www.tutorialspoint.com/images/logo.png" controls> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> </body> </html>