diff options
Diffstat (limited to 'files/es/web/api/globaleventhandlers/onresize/index.html')
-rw-r--r-- | files/es/web/api/globaleventhandlers/onresize/index.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/files/es/web/api/globaleventhandlers/onresize/index.html b/files/es/web/api/globaleventhandlers/onresize/index.html new file mode 100644 index 0000000000..5d18902f04 --- /dev/null +++ b/files/es/web/api/globaleventhandlers/onresize/index.html @@ -0,0 +1,71 @@ +--- +title: GlobalEventHandlers.onresize +slug: Web/API/GlobalEventHandlers/onresize +tags: + - API + - DOM + - Propiedad +translation_of: Web/API/GlobalEventHandlers/onresize +--- +<p>{{ ApiRef() }}</p> + +<p>La propiedad <strong>GlobalEventHandlers.onresize</strong> contiene un {{domxref("EventHandler")}} desencadenado cuando un evento {{event("resize")}} es recibido.</p> + +<h2 id="Syntax" name="Syntax">Sintaxis</h2> + +<pre class="eval">window.onresize = <em>funcRef</em>; +</pre> + +<h3 id="Parameters" name="Parameters">Parametros</h3> + +<ul> + <li><code>funcRef</code> es una referencia a una función.</li> +</ul> + +<h2 id="Example" name="Example">Ejemplo</h2> + +<pre>window.onresize = doFunc; +</pre> + +<pre><html> +<head> + +<title>onresize test</title> + +<script type="text/javascript"> + +window.onresize = resize; + +function resize() +{ + alert("resize event detected!"); +} +</script> +</head> + +<body> +<p>Resize the browser window to fire the resize event.</p> +</body> +</html> +</pre> + +<h2 id="Notes" name="Notes">Notas</h2> + +<p>El evento <u>resize</u> es activado después de que la ventana ha sido redimensionada.</p> + +<h2 id="Specification" name="Specification">Especificación</h2> + +<table class="spectable standard-table"> + <tbody> + <tr> + <th scope="col">Especificación</th> + <th scope="col">Status</th> + <th scope="col">Comentario</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG','webappapis.html#handler-onresize','onresize')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + </tbody> +</table> |