diff options
Diffstat (limited to 'files/zh-cn/web/svg/attribute/mask/index.html')
-rw-r--r-- | files/zh-cn/web/svg/attribute/mask/index.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/files/zh-cn/web/svg/attribute/mask/index.html b/files/zh-cn/web/svg/attribute/mask/index.html new file mode 100644 index 0000000000..d357ccf8a8 --- /dev/null +++ b/files/zh-cn/web/svg/attribute/mask/index.html @@ -0,0 +1,59 @@ +--- +title: mask +slug: Web/SVG/Attribute/mask +tags: + - SVG + - SVG属性 + - 需要兼容性表 +translation_of: Web/SVG/Attribute/mask +--- +<p>« <a href="/en/SVG/Attribute" title="en/SVG/Attribute">SVG属性参考主页</a></p> + +<p><code>mask</code>属性绑定的元素将应用给定的{{ SVGElement("mask") }}元素。</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><a href="/en/SVG/Content_type#FuncIRI" title="https://developer.mozilla.org/en/SVG/Content_type#FuncIRI"><FuncIRI></a> | <strong title="this is the default value">none</strong> | 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/masking.html#MaskProperty" title="hhttp://www.w3.org/TR/SVG/masking.html#MaskProperty">SVG 1.1 (2nd Edition)</a></td> + </tr> + </tbody> +</table> + +<dl> + <dt><a href="/en/SVG/Content_type#FuncIRI" title="https://developer.mozilla.org/en/SVG/Content_type#FuncIRI"><funcIRI></a></dt> + <dd>对同一SVG文档片段内部别的图形对象的一个引用 ,这个图形对象将用作遮罩。这个引用的句法与{{ cssxref("uri","CSS URI") }}的句法相同。</dd> +</dl> + +<h2 id="示例">示例</h2> + +<h2 id="元素">元素</h2> + +<p>下列元素可以使用<code>mask</code>属性:</p> + +<ul> + <li><a href="/en/SVG/Element#Container" title="en/SVG/Element#Container">容器元素</a> »</li> + <li><a href="/en/SVG/Element#Graphical" title="en/SVG/Element#Graphical">图形元素</a> »</li> +</ul> + +<h2 id="相关内容">相关内容</h2> + +<ul> + <li>{{ SVGElement("mask") }}</li> +</ul> |