diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-27 02:31:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 02:31:24 +0300 |
commit | 980fe00a74a9ad013b945755415ace2e5429c3c2 (patch) | |
tree | a1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/api/pointer_events/index.html | |
parent | 374a039b97a11ee7306539d16aaab27fed66b398 (diff) | |
download | translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2 translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip |
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/api/pointer_events/index.html')
-rw-r--r-- | files/ru/web/api/pointer_events/index.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/files/ru/web/api/pointer_events/index.html b/files/ru/web/api/pointer_events/index.html index 1d74bcf4aa..c6a57b7a95 100644 --- a/files/ru/web/api/pointer_events/index.html +++ b/files/ru/web/api/pointer_events/index.html @@ -160,7 +160,7 @@ translation_of: Web/API/Pointer_events <p>В этом примере определённому элементу назначаются обработчики каждого типа события.</p> -<pre class="brush: html notranslate"><html> +<pre class="brush: html"><html> <script> function over_handler(event) { } function enter_handler(event) { } @@ -198,7 +198,7 @@ translation_of: Web/API/Pointer_events <p>Этот пример демонстрирует доступ ко всем свойствам события касания.</p> -<pre class="brush: html notranslate"><html> +<pre class="brush: html"><html> <script> var id = -1; @@ -345,7 +345,7 @@ translation_of: Web/API/Pointer_events <p>The following example shows pointer capture being set on an element.</p> -<pre class="brush: html notranslate"><html> +<pre class="brush: html"><html> <script> function downHandler(ev) { let el = document.getElementById("target"); @@ -366,7 +366,7 @@ translation_of: Web/API/Pointer_events <p>The following example shows a pointer capture being released (when a {{event("pointercancel")}} event occurs. The browser does this automatically when a {{event("pointerup")}} or {{event("pointercancel")}} event occurs.</p> -<pre class="brush: html notranslate"><html> +<pre class="brush: html"><html> <script> function downHandler(ev) { let el = document.getElementById("target"); @@ -401,7 +401,7 @@ translation_of: Web/API/Pointer_events <p>In the following example, the browser's default touch behavior is disabled for the <code>div</code> element.</p> -<pre class="brush: html notranslate"><html> +<pre class="brush: html"><html> <body> <div style="touch-action:none;">Can't touch this ... </div> </body> @@ -410,14 +410,14 @@ translation_of: Web/API/Pointer_events <p>In the following example, default touch behavior is disabled for some <code>button</code> elements.</p> -<pre class="brush: css notranslate">button#tiny { +<pre class="brush: css">button#tiny { touch-action: none; } </pre> <p>In the following example, when the <code>target</code> element is touched, it will only pan in the horizontal direction.</p> -<pre class="brush: css notranslate">#target { +<pre class="brush: css">#target { touch-action: pan-x; } </pre> |