aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/@property/index.html
blob: f1eaf18521f5f0543d432409e580e3464c9ee336 (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
82
83
84
85
86
87
---
title: '@property'
slug: Web/CSS/@property
tags:
  - At-rule
  - CSS
  - Reference
  - Web
  - Property
  - Houdini
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>

<p><strong><code>@property</code></strong> <a href="/zh-CN/docs/Web/CSS">CSS</a> {{cssxref("at-rule")}}<a href="/en-US/docs/Web/Houdini">CSS Houdini</a> API的一部分, 它允许开发者显式地定义他们的{{cssxref('--*', 'CSS自定义属性')}}, 允许进行属性类型检查、设定默认值以及定义该自定义属性是否可以被继承。</p>

<p><code>@property</code> 规则提供了一个直接在样式表中注册自定义属性的方式,而无需运行任何JS代码。有效的 <code>@property</code> 规则会注册一个自定义属性, 就像 {{domxref('CSS.registerProperty')}} 函数被使用同样的参数调用了一样。</p>

<h2 id="Syntax">Syntax(语法描述符)</h2>

<pre class="brush: css no-line-numbers">@property --property-name {
  syntax: '&lt;color&gt;';
  inherits: false;
  initial-value: #c0ffee;
}</pre>

<p>一个有效的 <code>@property</code> 规则代表一项自定义属性的注册,使用自定义属性名作为规则内代码序列的序部。</p>

<p><code>@property</code> 规则中 <strong>syntax</strong><strong>inherits</strong> 描述符是必需的; 如果其中任何一项缺失, 整条规则都将失效并且会被忽略。 <strong>initial-value</strong> 描述符仅在syntax描述符为通用syntax定义时是可选的,否则<strong>initial-value</strong>也是必需的——如果此时该描述符缺失,整条规则都将失效且被忽略。</p>

<p>未知的描述符自身都是无效的,且会被忽略。但是不会造成整条<code>@property</code>规则的失效。</p>

<h2 id="Examples">实例</h2>

<p><code>--my-color</code> {{cssxref('--*', '自定义属性')}}添加颜色值类型检测、设置默认值并且设置属性值不允许被继承。</p>

<p>使用 <a href="/en-US/docs/Web/CSS">CSS</a> {{cssxref('@property')}} <a href="/en-US/docs/Web/CSS/At-rule">规则</a>:</p>

<pre class="brush: css">@property --my-color {
  syntax: '&lt;color&gt;';
  inherits: false;
  initial-value: #c0ffee;
}
</pre>

<p>使用 <a href="/en-US/docs/Web/JavaScript">JavaScript中的</a> {{domxref('CSS.registerProperty')}}函数:</p>

<pre class="brush: js">window.CSS.registerProperty({
  name: '--my-color',
  syntax: '&lt;color&gt;',
  inherits: false,
  initialValue: '#c0ffee',
});
</pre>

<h2 id="Formal_syntax">标准语法</h2>

<pre class="brush: css">{{csssyntax}}</pre>

<h2 id="Specifications">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">提案</th>
  </tr>
  <tr>
   <td>{{SpecName('CSS Properties and Values API', '#at-property-rule')}}</td>
   <td>{{Spec2('CSS Properties and Values API')}}</td>
   <td>初始定义.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">浏览器兼容性</h2>

<p>{{Compat("css.at-rules.property")}}</p>

<h2 id="See_also">另见</h2>

<ul>
 <li><a href="/zh-CN/docs/Web/API/CSS_Properties_and_Values_API">CSS属性与值 API</a></li>
 <li><a href="/zh-CN/docs/Web/API/CSS_Painting_API">CSS 绘图 API</a></li>
    <li><a href="/zh-CN/docs/Web/API/CSS_Typed_OM_API">CSS 类型对象模型</a></li>
 <li><a href="/zh-CN/docs/Web/Houdini">CSS Houdini</a></li>
</ul>