El atributo HTML onloadeddata es un atributo de evento que ocurre cuando los datos del cuadro actual se cargan pero los datos del siguiente cuadro no son suficientes para reproducir el audio/video.
Sintaxis:
<element onloadeddata="myScript">
Valor de atributo: este atributo contiene un script de valor único que funciona cuando se llama al atributo de evento onloadeddata. Este atributo es compatible con las etiquetas <audio> y <video> .
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title> HTML onloadeddata Attribute </title> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> HTML onloadeddata Attribute </h2> <audio controls id="audioId" onloadeddata="GFGfun()"> <source src= "https://media.geeksforgeeks.org/wp-content/uploads/20190625153922/frog.mp3" type="audio/mpeg" /> </audio> <script> function GFGFun() { alert( "Browser has loaded the current frame"); } </script> </center> </body> </html>
Producción:
Después:
Ejemplo 2:
html
<!DOCTYPE html> <html> <head> <title> HTML onloadeddata Attribute </title> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> HTML onloadeddata Attribute </h2> <video controls id="VideoId" width="320" height="240" onloadeddata="GFGfun()"> <source src= "https://media.geeksforgeeks.org/wp-content/uploads/20190401140735/g4g2.mp4" type="video/mp4" /> </video> <script> function GFGFun() { alert("Browser has loaded the current frame"); } </script> </center> </body> </html>
Producción:
Después:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA