&n"/>     &n">

首頁 >web前端 >html教學 >如何在HTML中將視訊的音訊輸出設定為靜音?

如何在HTML中將視訊的音訊輸出設定為靜音?

WBOY
WBOY轉載
2023-09-13 13:09:041044瀏覽

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

以上是如何在HTML中將視訊的音訊輸出設定為靜音?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除