1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
---
title: window.innerHeight
slug: Web/API/Window/innerHeight
tags:
- API
- Propiedades
- Referências
- Window
translation_of: Web/API/Window/innerHeight
---
<div><strong><em>//Propiedad solo lectura del objeto window.</em></strong></div>
<p> Representa la altura (en pixeles) del viewport</p>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox notranslate">var <em>alturaDelViewport</em> = window.innerHeight;</pre>
<h3 id="Valor">Valor</h3>
<p>Como retorno, la propiedad innerHeight del objeto window nos retornara un valor de tipo entero, que representara (en pixeles) la altura del viewport.</p>
<p>La propiedad <code>window.innerHeight</code> es solo de lectura; Y no tiene un valor por defecto.</p>
<h2 id="Notas_."><span style="">Notas . </span></h2>
<p><span style="">La propiedad innerHeight es soportada por cualquier objeto de ventana. Pudiendo ejectutarse en un conjunto de marcos (<frameset> </frameset>). O en una ventana secundaria.</span></p>
<p>Es un algoritmo para obtener la altura del viewport, excluyendo si se representa la barra de desplazamiento horizontal</p>
<h3 id="Ejemplo"><font color="#333333"><span style="background-color: #ffffff; font-size: 37.3333px;"><strong>Ejemplo</strong></span></font></h3>
<h3 id="Asumiendo_un_frameset">Asumiendo un frameset</h3>
<pre class="brush:js notranslate">var alturaViewport = window.innerHeight;
var alturaViewport = self.innerHeight;
// self es window
</pre>
<p> <span class="seoSummary"> <strong>//otra forma de obtener la altura (aúnque, no del viewport, síno de la ventana), es usando la propiedad outerHeight, del objeto window.</strong></span></p>
<h3 id="Ejemplo_Grafica"><span style="">Ejemplo (Grafica)</span></h3>
<p><img alt="innerHeight vs outerHeight illustration" src="/@api/deki/files/213/=FirefoxInnerVsOuterHeight2.png"></p>
<h2 id="Especificacion">Especificacion</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSSOM View', '#dom-window-innerheight', 'window.innerHeight')}}</td>
<td>{{Spec2('CSSOM View')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<p><br>
<font face="x-locale-heading-primary, zillaslab, Palatino, Palatino Linotype, x-locale-heading-secondary, serif"><span style="font-size: 37.3333px;"><strong>Compatibilidad del navegador</strong></span></font></p>
<p class="hidden"><span class="seoSummary">La compatibilidad de la tabla en esta pagina es generada por la estructura de datos. Si tú gustas contribuir, por favor dirigete a <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> y envia un pull Request</span></p>
<h2 id="Tambien_me_intersa">Tambien me intersa</h2>
<ul>
<li>{{domxref("window.innerWidth")}}</li>
<li>{{domxref("window.outerHeight")}}</li>
<li>{{domxref("window.outerWidth")}}</li>
</ul>
|