diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
commit | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch) | |
tree | 0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/web/api/uievent | |
parent | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff) | |
download | translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2 translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip |
initial commit
Diffstat (limited to 'files/es/web/api/uievent')
-rw-r--r-- | files/es/web/api/uievent/index.html | 158 | ||||
-rw-r--r-- | files/es/web/api/uievent/pagex/index.html | 102 |
2 files changed, 260 insertions, 0 deletions
diff --git a/files/es/web/api/uievent/index.html b/files/es/web/api/uievent/index.html new file mode 100644 index 0000000000..8d896924eb --- /dev/null +++ b/files/es/web/api/uievent/index.html @@ -0,0 +1,158 @@ +--- +title: UIEvent +slug: Web/API/UIEvent +tags: + - API +translation_of: Web/API/UIEvent +--- +<p>{{APIRef("DOM Events")}}</p> + +<p>The <strong><code>UIEvent</code></strong> interface represents simple user interface events.</p> + +<p><code>UIEvent</code> derives from {{domxref("Event")}}. Though the {{domxref("UIEvent.initUIEvent()")}} method is kept for backward compatibility, creating of a <code>UIEvent</code> object should be done using the {{domxref("UIEvent.UIEvent", "UIEvent()")}} constructor.</p> + +<p>Several interfaces are direct or indirect descendants of this one: {{domxref("MouseEvent")}}, {{domxref("FocusEvent")}}, {{domxref("KeyboardEvent")}}, {{domxref("WheelEvent")}}, {{domxref("InputEvent")}}, and {{domxref("CompositionEvent")}}.</p> + +<h2 id="Constructors">Constructors</h2> + +<dl> + <dt>{{domxref("UIEvent.UIEvent()", "UIEvent()")}}</dt> + <dd>Creates a <code>UIEvent</code> object.</dd> +</dl> + +<h2 id="Properties">Properties</h2> + +<p><em>This interface also inherits properties of its parent, {{domxref("Event")}}.</em></p> + +<dl> + <dt>{{domxref("UIEvent.cancelBubble")}} {{Deprecated_inline}}{{Non-standard_inline}}</dt> + <dd>Is a {{jsxref("Boolean")}} indicating whether the bubbling of the event has been canceled or not.</dd> +</dl> + +<dl> + <dt>{{domxref("UIEvent.detail")}}{{readonlyinline}}</dt> + <dd>Returns a <code>long</code> that gives some detail about the event, depending on the type of event.</dd> + <dt>{{domxref("UIEvent.isChar")}} {{Non-standard_inline}} {{readonlyinline}}</dt> + <dd>Returns a {{jsxref("Boolean")}} indicating whether the event produced a key character or not.</dd> + <dt>{{domxref("UIEvent.layerX")}} {{Non-standard_inline}} {{readonlyinline}}</dt> + <dd>Returns the horizontal coordinate of the event relative to the current layer.</dd> + <dt>{{domxref("UIEvent.layerY")}} {{Non-standard_inline}} {{readonlyinline}}</dt> + <dd>Returns the vertical coordinate of the event relative to the current layer.</dd> + <dt>{{domxref("UIEvent.pageX")}} {{Non-standard_inline}} {{readonlyinline}}</dt> + <dd>Returns the horizontal coordinate of the event relative to the whole document.</dd> + <dt>{{domxref("UIEvent.pageY")}} {{Non-standard_inline}} {{readonlyinline}}</dt> + <dd>Returns the vertical coordinate of the event relative to the whole document.</dd> + <dt>{{domxref("UIEvent.view")}}{{readonlyinline}}</dt> + <dd>Returns a {{domxref("WindowProxy")}} that contains the view that generated the event.</dd> + <dt>{{domxref("UIEvent.which")}} {{Non-standard_inline}} {{readonlyinline}}</dt> + <dd>Returns the numeric <code>keyCode</code> of the key pressed, or the character code (<code>charCode</code>) for an alphanumeric key pressed.</dd> +</dl> + +<h2 id="Methods">Methods</h2> + +<p><em>This interface also inherits methods of its parent, {{domxref("Event")}}.</em></p> + +<dl> + <dt>{{domxref("UIEvent.initUIEvent()")}} {{deprecated_inline}}</dt> + <dd>Initializes a <code>UIEvent</code> object. If the event has already being dispatched, this method does nothing.</dd> +</dl> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('DOM3 Events', '#interface-UIEvent', 'UIEvent')}}</td> + <td>{{Spec2('DOM3 Events')}}</td> + <td>From {{SpecName('DOM2 Events')}}: + <ul> + <li>added the <code>UIEvent()</code> constructor,</li> + <li>deprecated the <code>initUIEvent()</code> method,</li> + <li>and changed the type of <code>view</code> from <code>AbstractView</code> to <code>WindowProxy</code>.</li> + </ul> + </td> + </tr> + <tr> + <td>{{SpecName('DOM2 Events', '#Events-UIEvent', 'UIEvent')}}</td> + <td>{{Spec2('DOM2 Events')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">Browser compatibility</h2> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatUnknown() }}</td> + </tr> + <tr> + <td><code>UIEvent()</code></td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatGeckoDesktop(11)}}</td> + <td>{{ CompatUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatUnknown() }}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatUnknown() }}</td> + </tr> + <tr> + <td><code>UIEvent()</code></td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatGeckoMobile(11)}}</td> + <td>{{ CompatUnknown() }}</td> + <td>{{ CompatVersionUnknown() }}</td> + <td>{{ CompatUnknown() }}</td> + </tr> + </tbody> +</table> +</div> + +<h2 class="editable" id="See_also"><span>See also</span></h2> + +<ul> + <li>{{ domxref("Event") }}</li> +</ul> diff --git a/files/es/web/api/uievent/pagex/index.html b/files/es/web/api/uievent/pagex/index.html new file mode 100644 index 0000000000..fbd75e26f8 --- /dev/null +++ b/files/es/web/api/uievent/pagex/index.html @@ -0,0 +1,102 @@ +--- +title: event.pageX +slug: Web/API/UIEvent/pageX +tags: + - DOM + - Referencia_DOM_de_Gecko + - Todas_las_Categorías +translation_of: Web/API/UIEvent/pageX +--- +<p>{{ ApiRef() }}</p> +<h3 id="Sumario" name="Sumario">Sumario</h3> +<p>Retorna la coordena horizontal del evento, relativo al documento completo.</p> +<h3 id="Sintaxis" name="Sintaxis">Sintaxis</h3> +<pre class="eval"><i>pageX</i> =<i>event</i>.pageX; +</pre> +<p><code>pageX</code> es un valor entero expresado en pixels para la corrdenada X del puntero del ratón, relativo al documento entero, cuando se produjo el evento. Esta propiedad toma en cuenta la barra de desplazamiento horizontal de la página.</p> +<h3 id="Ejemplo" name="Ejemplo">Ejemplo</h3> +<pre><html> +<head> +<title>pageX\pageY & layerX\layerY example</title> + +<script type="text/javascript"> + +function showCoords(evt){ + var form = document.forms.form_coords; + var parent_id = evt.target.parentNode.id; + form.parentId.value = parent_id; + form.pageXCoords.value = evt.pageX; + form.pageYCoords.value = evt.pageY; + form.layerXCoords.value = evt.layerX; + form.layerYCoords.value = evt.layerY; +} + +</script> + +<style type="text/css"> + + #d1 { + border: solid blue 1px; + padding: 20px; + } + + #d2 { + position: absolute; + top: 180px; + left: 80%; + right:auto; + width: 40%; + border: solid blue 1px; + padding: 20px; + } + + #d3 { + position: absolute; + top: 240px; + left: 20%; + width: 50%; + border: solid blue 1px; + padding: 10px; + } + +</style> +</head> + +<body onmousedown="showCoords(event)"> + +<p>To display the mouse coordinates please click anywhere on the page.</p> + +<div id="d1"> +<span>This is an un-positioned div so clicking it will return +layerX/layerY values almost the same as pageX/PageY values.</span> +</div> + +<div id="d2"> +<span>This is a positioned div so clicking it will return layerX/layerY +values that are relative to the top-left corner of this positioned +element. Note the pageX\pageY properties still return the +absolute position in the document, including page scrolling.</span> + +<span>Make the page scroll more! This is a positioned div so clicking it +will return layerX/layerY values that are relative to the top-left +corner of this positioned element. Note the pageX\pageY properties still +return the absolute position in the document, including page +scrolling.</span> +</div> + +<div id="d3"> +<form name="form_coords"> + Parent Element id: <input type="text" name="parentId" size="7" /><br /> + pageX:<input type="text" name="pageXCoords" size="7" /> + pageY:<input type="text" name="pageYCoords" size="7" /><br /> + layerX:<input type="text" name="layerXCoords" size="7" /> + layerY:<input type="text" name="layerYCoords" size="7" /> +</form> +</div> + +</body> +</html> +</pre> +<h3 id="Specificaci.C3.B3n" name="Specificaci.C3.B3n">Specificación</h3> +<p>No es parte del estándar público.</p> +<p>{{ languages( { "pl": "pl/DOM/event.pageX", "en": "en/DOM/event.pageX" } ) }}</p> |