Skip to content

Commit

Permalink
[ru] remove outdated "Global attributes" section from `Web/SVG/Elemen…
Browse files Browse the repository at this point in the history
…t/*` documents (#22548)

[ru] remove outdated 'Global attributes' section from Web/SVG?Element/* documents
  • Loading branch information
leon-win authored Jul 28, 2024
1 parent 28a4fb6 commit ea555b6
Show file tree
Hide file tree
Showing 18 changed files with 37 additions and 300 deletions.
17 changes: 0 additions & 17 deletions files/ru/web/svg/element/a/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,23 +95,6 @@ svg|a:active {
- : URL или фрагмент URL, на который указывает гиперссылка. Может понадобиться для обратной совместимости со старыми браузерами.
_Тип_: **[\<URL>](/docs/Web/SVG/Content_type#URL)** ; _Значение по умолчанию_: _none_; _Анимируем_: **да**

### Глобальные атрибуты

- [Core Attributes](/ru/docs/Web/SVG/Attribute/Core)
- : Наиболее используемые: {{SVGAttr('id')}}, {{SVGAttr('lang')}}, {{SVGAttr('tabindex')}}
- [Styling Attributes](/docs/Web/SVG/Attribute/Styling)
- : {{SVGAttr('class')}}, {{SVGAttr('style')}}
- [Conditional Processing Attributes](/docs/Web/SVG/Attribute/Conditional_Processing)
- : Наиболее используемые: {{SVGAttr('requiredExtensions')}}, {{SVGAttr('systemLanguage')}}
- Event Attributes
- : [Global event attributes](/docs/Web/SVG/Attribute/Events#Global_Event_Attributes), [Document element event attributes](/docs/Web/SVG/Attribute/Events#Document_Element_Event_Attributes), [Graphical event attributes](/docs/Web/SVG/Attribute/Events#Graphical_Event_Attributes)
- [Presentation Attributes](/docs/Web/SVG/Attribute/Presentation)
- : Наиболее используемые: {{SVGAttr('clip-path')}}, {{SVGAttr('clip-rule')}}, {{SVGAttr('color')}}, {{SVGAttr('color-interpolation')}}, {{SVGAttr('color-rendering')}}, {{SVGAttr('cursor')}}, {{SVGAttr('display')}}, {{SVGAttr('fill')}}, {{SVGAttr('fill-opacity')}}, {{SVGAttr('fill-rule')}}, {{SVGAttr('filter')}}, {{SVGAttr('mask')}}, {{SVGAttr('opacity')}}, {{SVGAttr('pointer-events')}}, {{SVGAttr('shape-rendering')}}, {{SVGAttr('stroke')}}, {{SVGAttr('stroke-dasharray')}}, {{SVGAttr('stroke-dashoffset')}}, {{SVGAttr('stroke-linecap')}}, {{SVGAttr('stroke-linejoin')}}, {{SVGAttr('stroke-miterlimit')}}, {{SVGAttr('stroke-opacity')}}, {{SVGAttr('stroke-width')}}, {{SVGAttr("transform")}}, {{SVGAttr('vector-effect')}}, {{SVGAttr('visibility')}}
- XLink Attributes
- : Наиболее используемые: {{SVGAttr("xlink:title")}}
- ARIA Attributes
- : `aria-activedescendant`, `aria-atomic`, `aria-autocomplete`, `aria-busy`, `aria-checked`, `aria-colcount`, `aria-colindex`, `aria-colspan`, `aria-controls`, `aria-current`, `aria-describedby`, `aria-details`, `aria-disabled`, `aria-dropeffect`, `aria-errormessage`, `aria-expanded`, `aria-flowto`, `aria-grabbed`, `aria-haspopup`, `aria-hidden`, `aria-invalid`, `aria-keyshortcuts`, `aria-label`, `aria-labelledby`, `aria-level`, `aria-live`, `aria-modal`, `aria-multiline`, `aria-multiselectable`, `aria-orientation`, `aria-owns`, `aria-placeholder`, `aria-posinset`, `aria-pressed`, `aria-readonly`, `aria-relevant`, `aria-required`, `aria-roledescription`, `aria-rowcount`, `aria-rowindex`, `aria-rowspan`, `aria-selected`, `aria-setsize`, `aria-sort`, `aria-valuemax`, `aria-valuemin`, `aria-valuenow`, `aria-valuetext`, `role`

## Примечания к использованию

{{svginfo}}
Expand Down
23 changes: 0 additions & 23 deletions files/ru/web/svg/element/animate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,6 @@ slug: Web/SVG/Element/animate

» [animate.svg](/files/3258/animate.svg)

## Атрибуты

### Глобальные атрибуты

- [Conditional processing attributes](/ru/docs/Web/SVG/Attribute#ConditionalProccessing) »
- [Core attributes](/ru/docs/Web/SVG/Attribute#Core) »
- [Animation event attributes](/ru/docs/Web/SVG/Attribute#AnimationEvent) »
- [Xlink attributes](/ru/docs/Web/SVG/Attribute#XLink) »
- [Animation attribute target attributes](/ru/docs/Web/SVG/Attribute#AnimationAttributeTarget) »
- [Animation timing attributes](/ru/docs/Web/SVG/Attribute#AnimationTiming) »
- [Animation value attributes](/ru/docs/Web/SVG/Attribute#AnimationValue) »
- [Animation addition attributes](/ru/docs/Web/SVG/Attribute#AnimationAddition) »
- {{SVGAttr("externalResourcesRequired")}}

### Атрибуты элемента

- {{SVGAttr("attributeName")}}
- {{SVGAttr("attributeType")}}
- {{SVGAttr("from")}}
- {{SVGAttr("to")}}
- {{SVGAttr("dur")}}
- {{SVGAttr("repeatCount")}}

## DOM интерфейс

Элемент реализует [`SVGAnimateElement`](/ru/docs/Web/DOM/SVGAnimateElement) интерфейс .
Expand Down
89 changes: 33 additions & 56 deletions files/ru/web/svg/element/animatemotion/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,75 +7,52 @@ slug: Web/SVG/Element/animateMotion

Элемент **`<animateMotion>`** вызывает перемещение ссылочного элемента вдоль пути движения.

## Контекст использования
## Пример

{{svginfo}}
```css hidden
html,
body,
svg {
height: 100%;
margin: 0;
padding: 0;
display: block;
}
```

## Атрибуты
```html
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg">
<path
fill="none"
stroke="lightgrey"
d="M20,50 C20,-50 180,150 180,50 C180-50 20,150 20,50 z" />

<circle r="5" fill="red">
<animateMotion
dur="10s"
repeatCount="indefinite"
path="M20,50 C20,-50 180,150 180,50 C180-50 20,150 20,50 z" />
</circle>
</svg>
```

### Глобальные атрибуты
{{EmbedLiveSample('Пример', 150, '100%')}}

- [Условные атрибуты обработки](/ru/docs/SVG/Attribute#Conditional_processing_attributes)
- [Основные атрибуты](/ru/docs/SVG/Attribute#Core_attributes)
- [Атрибуты события анимации](/ru/docs/SVG/Attribute#Animation_event_attributes)
- [Атрибуты Xlink](/ru/docs/SVG/Attribute#XLink_attributes)
- [Атрибуты времени анимации](/ru/docs/SVG/Attribute#Animation_timing_attributes)
- [Величина атрибутов анимации](/ru/docs/SVG/Attribute#Animation_value_attributes)
- [Атрибуты добавления анимации](/ru/docs/SVG/Attribute#Animation_addition_attributes)
- {{SVGAttr("externalResourcesRequired")}}
## Контекст использования

### Собственные атрибуты
{{svginfo}}

## Атрибуты

- {{SVGAttr("calcMode")}}
- {{SVGAttr("path")}}
- {{SVGAttr("keyPoints")}}
- {{SVGAttr("path")}}
- {{SVGAttr("rotate")}}
- {{SVGAttr("origin")}}

## DOM интерфейс

Этот элемент реализует интерфейс {{domxref("SVGAnimateMotionElement")}}.

## Пример

### SVG

```html
<?xml version="1.0"?>
<svg
width="120"
height="120"
viewBox="0 0 120 120"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Рисуем серый контур движения с двумя
маленькими кружками в ключевых точках -->
<path
id="theMotionPath"
stroke="lightgrey"
stroke-width="2"
fill="none"
d="M10,110 A120,120 -45 0,1 110 10 A120,120 -45 0,1 10,110" />
<circle cx="10" cy="110" r="3" fill="lightgrey" />
<circle cx="110" cy="10" r="3" fill="lightgrey" />

<!-- Рисуем красный круг, который будет перемещаться
вдоль траектории движения. -->
<circle cx="" cy="" r="5" fill="red">
<!-- Определяем анимацию пути движения -->
<animateMotion dur="6s" repeatCount="indefinite">
<mpath xlink:href="#theMotionPath" />
</animateMotion>
</circle>
</svg>
```

### Результат

{{EmbedLiveSample("Пример", 120, 120)}}

## Характеристики
## Спецификации

{{Specifications}}

Expand Down
17 changes: 0 additions & 17 deletions files/ru/web/svg/element/defs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,6 @@ SVG позволяет задавать графические объекты д

{{svginfo}}

## Атрибуты

### Глобальные атрибуты

- [Conditional processing attributes](/ru/docs/Web/SVG/Attribute#Conditional_processing_attributes)
- [Core attributes](/ru/docs/Web/SVG/Attribute#Core_attributes)
- [Graphical event attributes](/ru/docs/Web/SVG/Attribute#Graphical_event_attributes)
- [Presentation attributes](/ru/docs/Web/SVG/Attribute#Presentation_attributes)
- {{SVGAttr("class")}}
- {{SVGAttr("style")}}
- {{SVGAttr("externalResourcesRequired")}}
- {{SVGAttr("transform")}}

### Специфичные атрибуты

_Нет._

## Интерфейс DOM

Элемент реализует интерфейс {{domxref("SVGDefsElement")}}.
Expand Down
27 changes: 3 additions & 24 deletions files/ru/web/svg/element/ellipse/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,36 +42,15 @@ svg {
- : Радиус эллипса по y.
_Тип значения_: `auto`|[**\<length>**](/docs/Web/SVG/Content_type#Length)|[**\<percentage>**](/docs/Web/SVG/Content_type#Percentage) ; _Значение по умолчанию_: `auto`; _Можно анимировать_: **да**
- {{SVGAttr("pathLength")}}

- : Этот атрибут позволяет установить длину всего пути.

_Тип значения_: [**\<number>**](/docs/Web/SVG/Content_type#Number) ; _Значение по умолчанию_: _нет_; _Можно анимировать_: **да**

> **Примечание:** Начиная с SVG2, `cx`, `cy`, `rx` и `ry` это _Геометрические свойства_. Это означает, что они могут быть использованы как CSS-свойства элемента.
### Глобальные Атрибуты
> **Примечание:** Начиная с SVG2, `cx`, `cy`, `rx` и `ry` это _Геометрические свойства_. Это означает, что они могут быть использованы как CSS-свойства элемента.
- [Основные атрибуты](/ru/docs/Web/SVG/Attribute/Core)
- : Самые важные: {{SVGAttr('id')}}, {{SVGAttr('tabindex')}}
- [Атрибуты стиля](/docs/Web/SVG/Attribute/Styling)
- : {{SVGAttr('class')}}, {{SVGAttr('style')}}
- [Условные атрибуты](/docs/Web/SVG/Attribute/Conditional_Processing)
- : Самые важные: {{SVGAttr('requiredExtensions')}}, {{SVGAttr('systemLanguage')}}
- Атрибуты событий
- : [Глобальные атрибуты событий](/docs/Web/SVG/Attribute/Events#Global_Event_Attributes), [Атрибуты графических событий](/docs/Web/SVG/Attribute/Events#Graphical_Event_Attributes)
- [Атрибуты представления](/docs/Web/SVG/Attribute/Presentation)
- : Самые важные: {{SVGAttr('clip-path')}}, {{SVGAttr('clip-rule')}}, {{SVGAttr('color')}}, {{SVGAttr('color-interpolation')}}, {{SVGAttr('color-rendering')}}, {{SVGAttr('cursor')}}, {{SVGAttr('display')}}, {{SVGAttr('fill')}}, {{SVGAttr('fill-opacity')}}, {{SVGAttr('fill-rule')}}, {{SVGAttr('filter')}}, {{SVGAttr('mask')}}, {{SVGAttr('opacity')}}, {{SVGAttr('pointer-events')}}, {{SVGAttr('shape-rendering')}}, {{SVGAttr('stroke')}}, {{SVGAttr('stroke-dasharray')}}, {{SVGAttr('stroke-dashoffset')}}, {{SVGAttr('stroke-linecap')}}, {{SVGAttr('stroke-linejoin')}}, {{SVGAttr('stroke-miterlimit')}}, {{SVGAttr('stroke-opacity')}}, {{SVGAttr('stroke-width')}}, {{SVGAttr("transform")}}, {{SVGAttr('vector-effect')}}, {{SVGAttr('visibility')}}
- ARIA-атрибуты
- : `aria-activedescendant`, `aria-atomic`, `aria-autocomplete`, `aria-busy`, `aria-checked`, `aria-colcount`, `aria-colindex`, `aria-colspan`, `aria-controls`, `aria-current`, `aria-describedby`, `aria-details`, `aria-disabled`, `aria-dropeffect`, `aria-errormessage`, `aria-expanded`, `aria-flowto`, `aria-grabbed`, `aria-haspopup`, `aria-hidden`, `aria-invalid`, `aria-keyshortcuts`, `aria-label`, `aria-labelledby`, `aria-level`, `aria-live`, `aria-modal`, `aria-multiline`, `aria-multiselectable`, `aria-orientation`, `aria-owns`, `aria-placeholder`, `aria-posinset`, `aria-pressed`, `aria-readonly`, `aria-relevant`, `aria-required`, `aria-roledescription`, `aria-rowcount`, `aria-rowindex`, `aria-rowspan`, `aria-selected`, `aria-setsize`, `aria-sort`, `aria-valuemax`, `aria-valuemin`, `aria-valuenow`, `aria-valuetext`, `role`

## Информация
## Контекст использования

{{svginfo}}

## Интерфейс DOM

Этот элемент реализует интерфейс {{ domxref("SVGEllipseElement") }}.

## Спецификации

{{Specifications}}
Expand All @@ -82,4 +61,4 @@ svg {

## Смотрите также

- {{SVGElement("circle")}}
- Другие основные SVG фигуры: **{{ SVGElement('circle') }}**, {{ SVGElement('line') }}, {{ SVGElement('polygon') }}, {{ SVGElement('polyline') }}, {{ SVGElement('rect') }}
10 changes: 0 additions & 10 deletions files/ru/web/svg/element/feblend/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@ slug: Web/SVG/Element/feBlend

## Атрибуты

### Глобальные атрибуты

- [Core attributes](/ru/docs/Web/SVG/Attribute#Core_attributes)
- [Presentation attributes](/ru/docs/Web/SVG/Attribute#Presentation_attributes)
- [Filter primitive attributes](/ru/docs/Web/SVG/Attribute#Filter_primitive_attributes)
- {{SVGAttr("class")}}
- {{SVGAttr("style")}}

### Специальные атрибуты

- {{SVGAttr("in")}}
- {{SVGAttr("in2")}}
- {{SVGAttr("mode")}}
Expand Down
15 changes: 0 additions & 15 deletions files/ru/web/svg/element/foreignobject/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,6 @@ svg {

> **Примечание:** Starting with SVG2 `x`, `y`, `width`, and `height` are Geometry Properties, meaning those attributes can also be used as CSS properties for that element.
### Глобальные атрибуты

- [Core Attributes](/ru/docs/Web/SVG/Attribute/Core)
- : Most notably: {{SVGAttr('id')}}, {{SVGAttr('tabindex')}}
- [Styling Attributes](/docs/Web/SVG/Attribute/Styling)
- : {{SVGAttr('class')}}, {{SVGAttr('style')}}
- [Conditional Processing Attributes](/docs/Web/SVG/Attribute/Conditional_Processing)
- : Most notably: {{SVGAttr('requiredExtensions')}}, {{SVGAttr('systemLanguage')}}
- Event Attributes
- : [Global event attributes](/docs/Web/SVG/Attribute/Events#Global_Event_Attributes), [Graphical event attributes](/docs/Web/SVG/Attribute/Events#Graphical_Event_Attributes), [Document event attributes](/docs/Web/SVG/Attribute/Events#Document_Event_Attributes), [Document element event attributes](/docs/Web/SVG/Attribute/Events#Document_Element_Event_Attributes)
- [Presentation Attributes](/docs/Web/SVG/Attribute/Presentation)
- : Most notably: {{SVGAttr('clip-path')}}, {{SVGAttr('clip-rule')}}, {{SVGAttr('color')}}, {{SVGAttr('color-interpolation')}}, {{SVGAttr('color-rendering')}}, {{SVGAttr('cursor')}}, {{SVGAttr('display')}}, {{SVGAttr('fill')}}, {{SVGAttr('fill-opacity')}}, {{SVGAttr('fill-rule')}}, {{SVGAttr('filter')}}, {{SVGAttr('mask')}}, {{SVGAttr('opacity')}}, {{SVGAttr('pointer-events')}}, {{SVGAttr('shape-rendering')}}, {{SVGAttr('stroke')}}, {{SVGAttr('stroke-dasharray')}}, {{SVGAttr('stroke-dashoffset')}}, {{SVGAttr('stroke-linecap')}}, {{SVGAttr('stroke-linejoin')}}, {{SVGAttr('stroke-miterlimit')}}, {{SVGAttr('stroke-opacity')}}, {{SVGAttr('stroke-width')}}, {{SVGAttr("transform")}}, {{SVGAttr('vector-effect')}}, {{SVGAttr('visibility')}}
- Aria Attributes
- : `aria-activedescendant`, `aria-atomic`, `aria-autocomplete`, `aria-busy`, `aria-checked`, `aria-colcount`, `aria-colindex`, `aria-colspan`, `aria-controls`, `aria-current`, `aria-describedby`, `aria-details`, `aria-disabled`, `aria-dropeffect`, `aria-errormessage`, `aria-expanded`, `aria-flowto`, `aria-grabbed`, `aria-haspopup`, `aria-hidden`, `aria-invalid`, `aria-keyshortcuts`, `aria-label`, `aria-labelledby`, `aria-level`, `aria-live`, `aria-modal`, `aria-multiline`, `aria-multiselectable`, `aria-orientation`, `aria-owns`, `aria-placeholder`, `aria-posinset`, `aria-pressed`, `aria-readonly`, `aria-relevant`, `aria-required`, `aria-roledescription`, `aria-rowcount`, `aria-rowindex`, `aria-rowspan`, `aria-selected`, `aria-setsize`, `aria-sort`, `aria-valuemax`, `aria-valuemin`, `aria-valuenow`, `aria-valuetext`, `role`

## Примечания по использованию

{{svginfo}}
Expand Down
14 changes: 0 additions & 14 deletions files/ru/web/svg/element/image/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,6 @@ slug: Web/SVG/Element/image

## Атрибуты

### Глобальные атрибуты

- [Conditional processing attributes](/ru/docs/Web/SVG/Attribute#ConditionalProccessing) »
- [Core attributes](/ru/docs/Web/SVG/Attribute#Core) »
- [Graphical event attributes](/ru/docs/Web/SVG/Attribute#GraphicalEvent) »
- [Xlink attributes](/ru/docs/Web/SVG/Attribute#XLink) »
- [Presentation attributes](/ru/docs/Web/SVG/Attribute#Presentation) »
- {{SVGAttr("class")}}
- {{SVGAttr("style")}}
- {{SVGAttr("externalResourcesRequired")}}
- {{SVGAttr("transform")}}

### Специфичные атрибуты

- {{SVGAttr("x")}}
- {{SVGAttr("y")}}
- {{SVGAttr("width")}}
Expand Down
15 changes: 0 additions & 15 deletions files/ru/web/svg/element/line/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,6 @@ svg {
- : Определяет общую длину пути в пользовательских единицах.
_Тип значения_: [**\<number>**](/docs/Web/SVG/Content_type#Number) ; _Значение по умолчанию_: _none_; А*неминуемый*: **да**

### Глобальные атрибуты

- [Основные атрибуты](/ru/docs/Web/SVG/Attribute/Core)
- : В первую очередь: {{SVGAttr('id')}}, {{SVGAttr('tabindex')}}
- [Атрибуты оформления (стилей)](/docs/Web/SVG/Attribute/Styling)
- : {{SVGAttr('class')}}, {{SVGAttr('style')}}
- [Атрибуты условной обработки](/docs/Web/SVG/Attribute/Conditional_Processing)
- : В первую очередь: {{SVGAttr('requiredExtensions')}}, {{SVGAttr('systemLanguage')}}
- Атрибуты события
- : [Глобальные атрибуты события](/docs/Web/SVG/Attribute/Events#Global_Event_Attributes), [Графические атрибуты события](/docs/Web/SVG/Attribute/Events#Graphical_Event_Attributes)
- [Атрибуты презентации](/docs/Web/SVG/Attribute/Presentation)
- : В первую очередь: {{SVGAttr('clip-path')}}, {{SVGAttr('clip-rule')}}, {{SVGAttr('color')}}, {{SVGAttr('color-interpolation')}}, {{SVGAttr('color-rendering')}}, {{SVGAttr('cursor')}}, {{SVGAttr('display')}}, {{SVGAttr('fill')}}, {{SVGAttr('fill-opacity')}}, {{SVGAttr('fill-rule')}}, {{SVGAttr('filter')}}, {{SVGAttr('mask')}}, {{SVGAttr('opacity')}}, {{SVGAttr('pointer-events')}}, {{SVGAttr('shape-rendering')}}, {{SVGAttr('stroke')}}, {{SVGAttr('stroke-dasharray')}}, {{SVGAttr('stroke-dashoffset')}}, {{SVGAttr('stroke-linecap')}}, {{SVGAttr('stroke-linejoin')}}, {{SVGAttr('stroke-miterlimit')}}, {{SVGAttr('stroke-opacity')}}, {{SVGAttr('stroke-width')}}, {{SVGAttr("transform")}}, {{SVGAttr('vector-effect')}}, {{SVGAttr('visibility')}}
- ARIA-атрибуты
- : `aria-activedescendant`, `aria-atomic`, `aria-autocomplete`, `aria-busy`, `aria-checked`, `aria-colcount`, `aria-colindex`, `aria-colspan`, `aria-controls`, `aria-current`, `aria-describedby`, `aria-details`, `aria-disabled`, `aria-dropeffect`, `aria-errormessage`, `aria-expanded`, `aria-flowto`, `aria-grabbed`, `aria-haspopup`, `aria-hidden`, `aria-invalid`, `aria-keyshortcuts`, `aria-label`, `aria-labelledby`, `aria-level`, `aria-live`, `aria-modal`, `aria-multiline`, `aria-multiselectable`, `aria-orientation`, `aria-owns`, `aria-placeholder`, `aria-posinset`, `aria-pressed`, `aria-readonly`, `aria-relevant`, `aria-required`, `aria-roledescription`, `aria-rowcount`, `aria-rowindex`, `aria-rowspan`, `aria-selected`, `aria-setsize`, `aria-sort`, `aria-valuemax`, `aria-valuemin`, `aria-valuenow`, `aria-valuetext`, `role`

## Спецификации

{{Specifications}}
Expand Down
Loading

0 comments on commit ea555b6

Please sign in to comment.