如何将 HTML 中的视频音频输出设置成静音?
使用 muted 属性可将视频的音频输出设置成静音。可以尝试运行以下代码以实施 muted 属性 −
示例
<!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>
广告