La propiedad Window innerHeight se usa para devolver la altura del área de contenido de una ventana. Es una propiedad de solo lectura y devuelve un número que representa la altura del área de contenido de la ventana del navegador en píxeles.
Sintaxis:
window.innerHeight
Valor devuelto: Devuelve un número que representa la altura del área de contenido de la ventana del navegador en píxeles.
El siguiente programa ilustra la propiedad Window innerheight: Devuelve
la altura del marco actual.
html
<!DOCTYPE html> <html> <head> <title> Window innerHeight Property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Window innerHeight Property</h2> <p>For returning the current frame's height, double click the "Check Height" button: </p> <button ondblclick="height()">Check Height</button> <p id="measure"></p> <script> function height() { var h = window.innerHeight; document.getElementById("measure").innerHTML = "Frame's Height: " + h; } </script> </body> </html>
Producción:
Después de hacer clic en el botón
Navegadores compatibles: los navegadores compatibles con Window innerHeight Property
se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
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