Answers for "mute button html video"

1

mute video html

<!-- Add the `muted` tag -->
<video muted>
  ...
</video>
Posted by: Guest on August-03-2021
0

add mute button to html5 video player

<video width="320" height="240" controls muted>
  <source src="x" type="video/x">
  <source src="x" type="x">
</video>
Posted by: Guest on April-03-2022

Browse Popular Code Answers by Language