El evento DOM onpause ocurre cuando el audio/video está en pausa. El audio/video puede ser pausado por el usuario o programáticamente.
Etiquetas admitidas
Sintaxis:
- En HTML:
<element onpause="myScript">
- En JavaScript:
object.onpause = function(){myScript};
- En JavaScript, usando el método addEventListener():
object.addEventListener("pause", myScript);
Ejemplo: uso del método addEventListener()
html
<!DOCTYPE html> <html> <head> <title> HTML DOM onpause Event </title> </head> <body> <center> <h1 style="color:green"> GeeksforGeks </h1> <h2>HTML DOM onpause Event</h2> <video controls id="vidID" width="320" height="240"> <source src= "https://media.geeksforgeeks.org/wp-content/uploads/20190401140735/g4g2.mp4" type="video/mp4"> </video> <script> document.getElementById( "vidID").addEventListener( "pause", GFGfun); function GFGfun() { alert("Video paused"); } </script> </center> </body> </html>
Producción:
- Antes de la pausa:
- Después de la pausa:
Navegadores compatibles: los navegadores compatibles con HTML DOM onpause Event se enumeran a continuación:
- Google Chrome
- Internet Explorer 9.0
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA