La propiedad Video en pausa en HTML DOM se usa para devolver si el video está en pausa o no. Es la propiedad de sólo lectura.
Sintaxis:
videoObject.paused
Retorno: la propiedad de video en pausa devuelve un valor booleano verdadero si el video está en pausa; de lo contrario, devuelve falso.
El siguiente programa ilustra la propiedad Video en pausa en HTML DOM:
Ejemplo:
<!DOCTYPE html> <html> <head> <title> Video paused Property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2 style="font-family: Impact;"> Video paused Property </h2><br> <video id="Test_Video" width="360" height="240" controls> <source src="samplevideo.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> </video> <p> For knowing whether the video is paused or not, double click the "Return Pause State" button. </p> <button ondblclick="set()" type="button"> Return Pause State </button> <p id="test"></p> <script> function set() { var v = document.getElementById("Test_Video").paused; document.getElementById("test").innerHTML = v; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad Video en pausa se enumeran a continuación:
- Google Chrome
- Internet Explorer 9.0
- Firefox
- Ópera
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA