diff options
Diffstat (limited to 'files/pl/web/api/mouseevent/shiftkey/index.html')
-rw-r--r-- | files/pl/web/api/mouseevent/shiftkey/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/files/pl/web/api/mouseevent/shiftkey/index.html b/files/pl/web/api/mouseevent/shiftkey/index.html new file mode 100644 index 0000000000..ee3c1cb72c --- /dev/null +++ b/files/pl/web/api/mouseevent/shiftkey/index.html @@ -0,0 +1,27 @@ +--- +title: event.shiftKey +slug: Web/API/Event/shiftKey +tags: + - DOM + - Wszystkie_kategorie +translation_of: Web/API/MouseEvent/shiftKey +translation_of_original: Web/API/event.shiftKey +--- +<p>{{ ApiRef() }}</p> +<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3> +<p>Wskazuje, czy klawisz <shift> był wciśnięty przy wywołaniu zdarzenia.</p> +<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3> +<pre class="eval">bool = event.shiftKey +</pre> +<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3> +<pre> function goInput(e) { + // sprawdza shiftKey + if e.shiftKey + // i przekazuje zdarzenie dalej + superSizeOutput(e); + else + doOutput(e) +</pre> +<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3> +<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent-shiftKey">shiftKey </a></p> +<p>{{ languages( { "en": "en/DOM/event.shiftKey" } ) }}</p> |