Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

จะตั้งค่าเอาต์พุตเสียงของวิดีโอให้ปิดเสียงใน HTML ได้อย่างไร


ใช้ ปิดเสียง แอตทริบิวต์เพื่อตั้งค่าเอาต์พุตเสียงของวิดีโอให้ปิดเสียง คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน ปิดเสียง แอตทริบิวต์ −

ตัวอย่าง

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls muted>
         <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>