如何在 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>
廣告