aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/touch-action
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-27 02:31:24 +0300
committerGitHub <noreply@github.com>2021-10-27 02:31:24 +0300
commit980fe00a74a9ad013b945755415ace2e5429c3c2 (patch)
treea1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/css/touch-action
parent374a039b97a11ee7306539d16aaab27fed66b398 (diff)
downloadtranslated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/css/touch-action')
-rw-r--r--files/ru/web/css/touch-action/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/touch-action/index.html b/files/ru/web/css/touch-action/index.html
index ab1982d906..3562521aa9 100644
--- a/files/ru/web/css/touch-action/index.html
+++ b/files/ru/web/css/touch-action/index.html
@@ -7,7 +7,7 @@ translation_of: Web/CSS/touch-action
<p>Css-свойство touch-action указывает как элемент будет управляться через тачскрин (например, при помощи возможности приближения (zooming), встроенной в браузер).</p>
-<pre class="brush:css no-line-numbers notranslate">/* Keyword values */
+<pre class="brush:css no-line-numbers">/* Keyword values */
touch-action: auto;
touch-action: none;
touch-action: pan-x;
@@ -68,14 +68,14 @@ touch-action: unset;
<p>The most common usage is to disable all gestures on an element (and its non-scrollable descendants) that provides its own dragging and zooming behavior – such as a map or game surface. </p>
-<pre class="brush: css notranslate">#map {
+<pre class="brush: css">#map {
  touch-action: none;
}
</pre>
<p>Another common pattern is that of an image carousel which uses pointer events to handle horizontal panning, but doesn't want to interfere with vertical scrolling or zooming of the document.</p>
-<pre class="brush: css notranslate">.image-carousel {
+<pre class="brush: css">.image-carousel {
width: 100%;
height: 150px;
  touch-action: pan-y pinch-zoom;
@@ -84,7 +84,7 @@ touch-action: unset;
<p><strong>touch-action </strong>is also often used to completely disable the delay of <strong>click </strong>events caused by support for the<strong> </strong>double-tap to zoom gesture.</p>
-<pre class="brush: css notranslate">html {
+<pre class="brush: css">html {
  touch-action: manipulation;
}
</pre>