blob: 2ea13cd6d4e9db9c107b6109f021e343adfbc972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
---
title: fill-opacity
slug: Web/SVG/Attribute/fill-opacity
tags:
- SVG
- SVG атрибуты
translation_of: Web/SVG/Attribute/fill-opacity
---
<p>« <a href="/ru/docs/Web/SVG/Attribute" title="Справочник SVG атрибутов">Справочник SVG атрибутов</a></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><a href="/en/SVG/Content_type#Opacity_value" title="en/SVG/Content_type#Opacity_value"><opacity-value></a> | inherit</td>
</tr>
<tr>
<th scope="row">Предустановленное значение</th>
<td>1</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/painting.html#FillOpacityProperty">SVG 1.1 (2nd Edition)</a></td>
</tr>
</tbody>
</table>
<h2 id="Примеры">Примеры</h2>
<h3 id="SVG">SVG</h3>
<pre class="brush: html"><svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<circle cx="100" cy="100" r="100" />
</svg>
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<circle cx="100" cy="100" r="100" fill-opacity="0.25" />
</svg></pre>
<h3 id="результат">результат</h3>
<p>{{EmbedLiveSample('Примеры', 200, 200)}}</p>
<h2 id="Элементы">Элементы</h2>
<p>Следующие группы элементов могут быть использованы с атрибутом <code>fill-opacity</code>:</p>
<ul>
<li><a href="/en/SVG/Element#Shape" title="en/SVG/Element#Shape">Элементы графических форм (Shape elements</a>) »</li>
<li><a href="/en/SVG/Element#TextContent" title="en/SVG/Element#TexteContent">Текстовые элементы</a> »</li>
</ul>
<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>{{ SVGAttr("stroke-opacity") }}</li>
<li>{{ SVGAttr("opacity") }}</li>
</ul>
|