El atributo de bucle HTML se usa para reiniciar el audio y el video una y otra vez después de terminarlo . Contiene el valor booleano.
Sintaxis:
<element loop>
Aplicable
- <audio>
- <vídeo>
- <marquesina>
- <bgsonido>
Ejemplo 1: El siguiente ejemplo ilustra el uso del atributo de bucle en el elemento <audio> .
html
<!DOCTYPE html> <html> <head> <title> Audio loop Attribute </title> </head> <body style="text-align: center"> <h1 style="color: green"> GeeksforGeeks </h1> <h2 style="font-family: Impact"> HTML Audio loop Attribute </h2> <br> <audio id="Test_Audio" controls loop> <source src="beep.mp3" type="audio/mpeg"> </audio> </body> </html>
Producción:
Ejemplo 2: El siguiente ejemplo ilustra el uso del atributo de bucle en el elemento <video> .
html
<!DOCTYPE html> <html> <head> <title> HTML video loop Attribute </title> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>HTML video loop Attribute</h3> <video width="400" height="200" controls loop> <source src="Canvas.move_.mp4" type="video/mp4"> <source src="Canvas.move_.ogg" type="video/ogg"> </video> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con loop Attribute se enumeran a continuación:
- Google Chrome 4.0/4.0
- Internet Explorer 9.0/9.0
- Firefox 3.5/11.0
- Apple Safari 4.0/4.0
- Ópera 10.5/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