El atributo silenciado HTML se usa para especificar que la salida de audio del video está silenciada , es un atributo booleano.
Aplicable:
Sintaxis
<video muted>
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML muted Attribute </title> </head> <body style="text-align: center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2 style="font-family:Impact"> HTML muted Attribute </h2> <br> <video id="Test_Video" width="360" height="240" controls muted> <source src="samplevideo.mp4" type="video/mp4"> <source src="samplevideo.ogg" type="video/ogg"> </video> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo HTML silenciado se enumeran a continuación:
- Google Chrome 4.0
- Internet Explorer 10.0
- Firefox 11.0
- Apple Safari 7.1
- Ópera 10.5
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA