El atributo de espera HTML es un atributo de evento que ocurre cuando el audio o el video se detiene para almacenar en el búfer el siguiente cuadro. Se puede utilizar en etiquetas de audio y video.
Aplicable:
- <audio>
- <vídeo>
Sintaxis:
<element onwaiting="Script">
Valor de atributo : este atributo contiene un script de valor único que funciona cuando se espera una llamada de atributo de evento
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML DOM onwaiting Attribute</title> </head> <body> <center> <h1 style="color:green">GeeksforGeeks</h1> <h2>HTML onwaiting Attribute</h2> <video controls id="videoID"> <source src="GFG.mp4" type="video/mp4"> </video> </center> <script> document.getElementById( "videoID").addEventListener("waiting", GFGfun); function GFGfun() { alert(" start Buffering"); } </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA