From 21332084c5539fc8e70c9a347460cdfe6ac3ff0c Mon Sep 17 00:00:00 2001 From: Juan Vasquez Date: Sun, 16 Oct 2022 22:00:01 -0500 Subject: [PATCH] Convertir a md web/api/keyboardevent/metakey [es] https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/metaKey https://developer.mozilla.org/es/docs/Web/API/KeyboardEvent/metaKey --- .../web/api/keyboardevent/metakey/index.html | 85 ------------------- .../es/web/api/keyboardevent/metakey/index.md | 68 +++++++++++++++ 2 files changed, 68 insertions(+), 85 deletions(-) delete mode 100644 files/es/web/api/keyboardevent/metakey/index.html create mode 100644 files/es/web/api/keyboardevent/metakey/index.md diff --git a/files/es/web/api/keyboardevent/metakey/index.html b/files/es/web/api/keyboardevent/metakey/index.html deleted file mode 100644 index bb5cd8ff29cf18..00000000000000 --- a/files/es/web/api/keyboardevent/metakey/index.html +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: KeyboardEvent.metaKey -slug: Web/API/KeyboardEvent/metaKey -tags: - - Evento - - Referencia -translation_of: Web/API/KeyboardEvent/metaKey ---- -

{{APIRef("DOM Events")}}

- -

La propiedad KeyboardEvent.metaKey es de solo lectura y regresa un valor {{jsxref("Boolean")}} que indica si la tecla Meta estaba presionada (true) o no (false) cuando el evento ocurrio.

- -
-

Nota: En teclados Macintosh es la tecla comando (). En teclados Windows la tecla es lla tecla window ().

-
- -

Syntax

- -
var metaKeyPressed = instanceOfKeyboardEvent.metaKey
-
- -

Valor de retorno

- -

{{jsxref("Boolean")}}

- -

Ejemplo

- -
 function goInput(e) {
- // Revisa si estaba presionada la tecla meta y
-   if (e.metaKey) {
-        // realiza esto en caso de cierto
-     superSizeOutput(e);
-   } else {
-         //Realiz esto en caso de falso
-     doOutput(e);
-   }
- }
-
- -

metaKey

- -

Contenido HTML

- -
<div id="example" onmousedown="ismetaKey(event);">¡Presiona la tecla meta y dame click!<div>
-
- -

Contenido Javascript

- -
function ismetaKey(e){
- var el=document.getElementById("example");//Toma el control del div example
- var mK=e.metaKey;//Obtiene el valor de metaKey y lo almacena
- el.innerHTML="¡Presiona la tecla meta y dame click!</br>metaKey:"+mK;//Muestra el valor de metaKey
-}
-
- -

- -

{{ EmbedLiveSample('metaKey') }}

- -

Especificaciones

- - - - - - - - - - - - - - -
EspecificaciónStatusComentario
{{SpecName('DOM3 Events','#widl-KeyboardEvent-metaKey','KeyboardEvent.metaKey')}}{{Spec2('DOM3 Events')}}Definición inicial
- -

Compatibilidad de Navegadores

- -{{Compat("api.KeyboardEvent.metaKey")}} - -

Ver también

- - diff --git a/files/es/web/api/keyboardevent/metakey/index.md b/files/es/web/api/keyboardevent/metakey/index.md new file mode 100644 index 00000000000000..f5316931bc3b04 --- /dev/null +++ b/files/es/web/api/keyboardevent/metakey/index.md @@ -0,0 +1,68 @@ +--- +title: KeyboardEvent.metaKey +slug: Web/API/KeyboardEvent/metaKey +translation_of: Web/API/KeyboardEvent/metaKey +browser-compat: api.KeyboardEvent.metaKey +--- + +{{APIRef("DOM Events")}} + +La propiedad **`KeyboardEvent.metaKey`** es de solo lectura y regresa un valor {{jsxref("Boolean")}} que indica si la tecla Meta estaba presionada (true) o no (false) cuando el evento ocurrio. + +> **Nota:** En teclados Macintosh es la tecla comando (). En teclados Windows la tecla es lla tecla window (). + +## Syntax + +``` +var metaKeyPressed = instanceOfKeyboardEvent.metaKey +``` + +### Valor de retorno + +{{jsxref("Boolean")}} + +## Ejemplo + +```js + function goInput(e) { + // Revisa si estaba presionada la tecla meta y + if (e.metaKey) { + // realiza esto en caso de cierto + superSizeOutput(e); + } else { + //Realiz esto en caso de falso + doOutput(e); + } + } +``` + +## metaKey + +### Contenido HTML + +```html +
¡Presiona la tecla meta y dame click!
+``` + +### Contenido Javascript + +```js +function ismetaKey(e){ + var el=document.getElementById("example");//Toma el control del div example + var mK=e.metaKey;//Obtiene el valor de metaKey y lo almacena + el.innerHTML="¡Presiona la tecla meta y dame click!
metaKey:"+mK;//Muestra el valor de metaKey +} +``` +{{ EmbedLiveSample('metaKey') }} + +## Especificaciones + +{{Specifications}} + +## Compatibilidad de Navegadores + +{{Compat}} + +## Véase también + +- {{ domxref("KeyboardEvent") }}