aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/event/ctrlkey/index.html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:47:54 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:47:54 +0100
commit30feb96f6084a2fb976a24ac01c1f4a054611b62 (patch)
treed73194ae27b60156ff0ca54013c8c4ad8519f10a /files/it/web/api/event/ctrlkey/index.html
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-30feb96f6084a2fb976a24ac01c1f4a054611b62.tar.gz
translated-content-30feb96f6084a2fb976a24ac01c1f4a054611b62.tar.bz2
translated-content-30feb96f6084a2fb976a24ac01c1f4a054611b62.zip
unslug it: move
Diffstat (limited to 'files/it/web/api/event/ctrlkey/index.html')
-rw-r--r--files/it/web/api/event/ctrlkey/index.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/files/it/web/api/event/ctrlkey/index.html b/files/it/web/api/event/ctrlkey/index.html
deleted file mode 100644
index 195374d673..0000000000
--- a/files/it/web/api/event/ctrlkey/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title: event.ctrlKey
-slug: Web/API/Event/ctrlKey
-tags:
- - DOM
- - Gecko
- - Reference_del_DOM_di_Gecko
- - Tutte_le_categorie
-translation_of: Web/API/MouseEvent/ctrlKey
-translation_of_original: Web/API/event.ctrlKey
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Sommario" name="Sommario">Sommario</h3>
-<p>Indica se il tasto CTRL รจ stato premuto mentre l'evento si verificava.</p>
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-<pre class="eval"><i>bool</i> = event.ctrlKey
-</pre>
-<p><code>bool</code> vale <code>true</code> se il tasto CTRL era premuto, altrimenti <code>false</code>.</p>
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-<pre>&lt;html&gt;
-&lt;head&gt;
-&lt;title&gt;esempio tasto control&lt;/title&gt;
-
-&lt;script type="text/javascript"&gt;
-
-function mostraCarattere(e){
- alert(
- "Tasto premuto: " + String.fromCharCode(e.charCode) + "\n"
- + "Codice carattere: " + e.charCode + "\n"
- + "Tasto CTRL premuto: " + e.ctrlKey + "\n"
- );
-}
-
-&lt;/script&gt;
-&lt;/head&gt;
-
-&lt;body onkeypress="mostraCarattere(event);"&gt;
-&lt;p&gt;Prova a premere un tasto tenendo premuto CTRL e prova a premere un tasto senza premere CTRL.&lt;br /&gt;
-Puoi anche provare a premere CTRL+SHIFT.&lt;/p&gt;
-&lt;/body&gt;
-&lt;/html&gt;
-</pre>
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent-ctrlKey">ctrlKey </a></p>
-<p>{{ languages( { "en": "en/DOM/event.ctrlKey", "pl": "pl/DOM/event.ctrlKey" } ) }}</p>