aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/svg/attribute/stroke-opacity/index.html
blob: e791baf1d67dec58d274c5628ca96465239de763 (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
70
71
72
73
74
75
76
77
78
79
80
81
---
title: stroke-opacity
slug: Web/SVG/Attribute/stroke-opacity
tags:
  - SVG
  - SVG属性
  - 需要兼容性表
translation_of: Web/SVG/Attribute/stroke-opacity
---
<p>« <a href="/en/SVG/Attribute" title="en/SVG/Attribute">SVG属性参考主页</a></p>

<p><code>stroke-opacity</code>属性指定了当前对象的轮廓的不透明度。它的默认值是<strong>1</strong></p>

<p>作为一个外观属性,它可以直接用作CSS样式表内部的属性。</p>

<h2 id="用法">用法</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="row">类别</th>
   <td>外观属性</td>
  </tr>
  <tr>
   <th scope="row"></th>
   <td>&lt;opacity-value&gt; | inherit</td>
  </tr>
  <tr>
   <th scope="row">可变性</th>
   <td>Yes</td>
  </tr>
  <tr>
   <th scope="row">规范文档</th>
   <td><a class="external" href="http://www.w3.org/TR/SVG/painting.html#StrokeOpacityProperty">SVG 1.1 (2nd Edition)</a></td>
  </tr>
 </tbody>
</table>

<dl>
 <dt>&lt;opacity-value&gt;</dt>
 <dd>在当前对象的轮廓上用该涂色操作的不透明度。任何超出0.0到1.0范围的值都会被压回这个范围(0.0表示完全透明,1.0表示完全不透明)。</dd>
</dl>

<h2 id="示例">示例</h2>

<h3 id="SVG">SVG</h3>

<pre class="brush: html">&lt;svg width="120px" height="120px" viewBox="0 0 120 120"&gt;
  &lt;rect x="10" y="10" width="100" height="100"/&gt;
&lt;/svg&gt;</pre>

<h3 id="CSS">CSS</h3>

<div>
<pre class="brush: css">rect{
  fill:#b4da55;
  stroke:#000;
  stroke-width:10px;
  stroke-opacity:0.3;
}</pre>

<h3 id="结果">结果</h3>

<div>{{EmbedLiveSample("Example",150,150)}}</div>
</div>

<h2 id="元素">元素</h2>

<p>下列元素可以使用<code>stroke-opacity</code>属性:</p>

<ul>
 <li><a href="/en/SVG/Element#Shape" title="en/SVG/Element#Shape">形状元素</a> »</li>
 <li><a href="/en/SVG/Element#TextContent" title="en/SVG/Element#TextContent">文本内容元素</a> »</li>
</ul>

<h2 id="参见">参见</h2>

<ul>
 <li>{{ SVGAttr("fill-opacity") }}</li>
 <li>{{ SVGAttr("opacity") }}</li>
</ul>