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

จะรวมการควบคุมเสียง/วิดีโอใน HTML ได้อย่างไร


ใช้การควบคุม แอตทริบิวต์ใน HTML เพื่อรวมการควบคุมเสียง/วิดีโอใน HTML

ตัวอย่าง

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

<!DOCTYPE html>
<html>
   <head>
      <title>HTML video Tag</title>
   </head>
   <body>
      <p>Online Compiler</p>
      <br />
      <video width = "500" height = "300" controls>
         <source src = "/html/compileonline.mp4" type = "video/mp4">
         This browser doesn't support video tag.
      </video>
   </body>
</html>