如何在 HTML 中包含音频/视频控件?
在 HTML 中使用 controls 属性来包含音频/视频控件。
示例
你可以尝试运行以下代码来实现 controls 属性--
<!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>
广告