aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/svg/attribute/additive/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/svg/attribute/additive/index.html')
-rw-r--r--files/ru/web/svg/attribute/additive/index.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/files/ru/web/svg/attribute/additive/index.html b/files/ru/web/svg/attribute/additive/index.html
new file mode 100644
index 0000000000..0e5666b2b5
--- /dev/null
+++ b/files/ru/web/svg/attribute/additive/index.html
@@ -0,0 +1,56 @@
+---
+title: additive
+slug: Web/SVG/Attribute/additive
+tags:
+ - SVG
+ - SVG атрибуты
+translation_of: Web/SVG/Attribute/additive
+---
+<p>« <a href="/ru/docs/Web/SVG/Attribute" title="Справочник SVG атрибутов">Справочник SVG атрибутов</a></p>
+
+<p>Этот атрибут определяет, является ли анимация аддитивной.</p>
+
+<p>Часто бывает полезно определить анимацию как смещение или Дельта для значения атрибута, а не как абсолютные значения. Этот атрибут указывает на анимацию, если их значения добавляются к исходному значению анимированного атрибута.</p>
+
+<h2 id="Контекст_использования">Контекст использования</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">Категории</th>
+ <td>Атрибут добавления анимации</td>
+ </tr>
+ <tr>
+ <th scope="row">Значение</th>
+ <td><strong title="this is the default value">replace</strong> | sum</td>
+ </tr>
+ <tr>
+ <th scope="row">Анимируемый</th>
+ <td>Нет</td>
+ </tr>
+ <tr>
+ <th scope="row">Нормативный документ</th>
+ <td><a class="external" href="http://www.w3.org/TR/SVG/animate.html#AdditionAttributes" title="http://www.w3.org/TR/SVG/animate.html#AdditionAttributes">SVG 1.1 (2nd Edition)</a></td>
+ </tr>
+ </tbody>
+</table>
+
+<dl>
+ <dt>sum</dt>
+ <dd>Указывает, что анимация добавляется к базовому значению атрибута и других анимаций с меньшим приоритетом.</dd>
+ <dt>replace</dt>
+ <dd>Указывает, что анимация переопределит базовое значение атрибута и другие анимации с меньшим приоритетом. Это значение по умолчанию, однако на поведение также влияют атрибуты значений анимации {{ SVGAttr("by") }} и {{ SVGAttr("to") }}, как описано в <a class="external" href="http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromToByAndAdditive" title="http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromToByAndAdditive">SMIL Animation: How from, to and by attributes affect additive behavior</a>.</dd>
+</dl>
+
+<h2 id="Пример">Пример</h2>
+
+<h2 id="Элементы">Элементы</h2>
+
+<p>Следующие элементы могут использовать атрибут <code>additive</code></p>
+
+<ul>
+ <li>{{ SVGElement("animate") }}</li>
+ <li>{{ SVGElement("animateColor") }}</li>
+ <li>{{ SVGElement("animateMotion") }}</li>
+ <li>{{ SVGElement("animateTransform") }}</li>
+</ul>