blob: ba3ce2d48c093a80476fe7b4569b7735857f353b (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
---
title: class
slug: Web/SVG/Attribute/class
translation_of: Web/SVG/Attribute/class
---
<p>« <a href="/en/SVG/Attribute" title="en/SVG/Attribute">SVG Eigenschaft Referenz</a></p>
<p>Weist einen Klassennamen oder eine Reihe von Klassennamen einem Element zu. Sie können den Klassennamen mehrfach einem Element zuweisen, oder auch zu mehreren Elementen zuweisen. Jedoch müssen Klassennamen mit einem Leerzeichen getrennt sein.</p>
<p>Der Klassenname eines Elements hat zwei Schlüsselfunktionen:</p>
<ul>
<li>Als Stil-Selektor, wenn ein Autor einen Satz von Elementen Stil-Informationen zuweist.</li>
<li>Als generelle Funktion für den Browser.</li>
</ul>
<p>Sie können die Klasse verwenden um SVG mithilfe von CSS zu formatieren.</p>
<h2 id="Nutzungskontext">Nutzungskontext</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="row">Kategorien</th>
<td>Keine</td>
</tr>
<tr>
<th scope="row">Wert</th>
<td><a href="/en/SVG/Content_type#List-of-Ts" title="en/SVG/Content type#List-of-Ts"><liste-von-klassen-namen></a></td>
</tr>
<tr>
<th scope="row">Animierbar</th>
<td>Ja</td>
</tr>
<tr>
<th scope="row">Normatives Dokument</th>
<td><a class="external" href="http://www.w3.org/TR/SVG/styling.html#ClassAttribute">SVG 1.1 (2nd Edition): The class attribute</a></td>
</tr>
</tbody>
</table>
<p>{{ page("/en/SVG/Content_type","List-of-Ts") }}</p>
<h2 id="Beispiel">Beispiel</h2>
<pre class="brush: html"><html>
<body>
<svg width="120" height="220"
viewPort="0 0 120 120" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<style type="text/css" >
<![CDATA[
rect.rectClass {
stroke: #000066;
fill: #00cc00;
}
circle.circleClass {
stroke: #006600;
fill: #cc0000;
}
]]>
</style>
<rect class="rectClass" x="10" y="10" width="100" height="100"/>
<circle class="circleClass" cx="40" cy="50" r="26"/>
</svg>
</body>
</html></pre>
<h2 id="Elemente">Elemente</h2>
<p>Die folgenden ELemente können das <code>class</code> Attribut verwenden:</p>
<div class="threecolumns">
<ul>
<li>{{ SVGElement("a") }}</li>
<li>{{ SVGElement("altGlyph") }}</li>
<li>{{ SVGElement("circle") }}</li>
<li>{{ SVGElement("clipPath") }}</li>
<li>{{ SVGElement("defs") }}</li>
<li>{{ SVGElement("desc") }}</li>
<li>{{ SVGElement("ellipse") }}</li>
<li>{{ SVGElement("feBlend") }}</li>
<li>{{ SVGElement("feColorMatrix") }}</li>
<li>{{ SVGElement("feComponentTransfer") }}</li>
<li>{{ SVGElement("feComposite") }}</li>
<li>{{ SVGElement("feConvolveMatrix") }}</li>
<li>{{ SVGElement("feDiffuseLighting") }}</li>
<li>{{ SVGElement("feDisplacementMap") }}</li>
<li>{{ SVGElement("feFlood") }}</li>
<li>{{ SVGElement("feGaussianBlur") }}</li>
<li>{{ SVGElement("feImage") }}</li>
<li>{{ SVGElement("feMerge") }}</li>
<li>{{ SVGElement("feMorphology") }}</li>
<li>{{ SVGElement("feOffset") }}</li>
<li>{{ SVGElement("feSpecularLighting") }}</li>
<li>{{ SVGElement("feTile") }}</li>
<li>{{ SVGElement("feTurbulence") }}</li>
<li>{{ SVGElement("filter") }}</li>
<li>{{ SVGElement("font") }}</li>
<li>{{ SVGElement("foreignObject") }}</li>
<li>{{ SVGElement("g") }}</li>
<li>{{ SVGElement("glyph") }}</li>
<li>{{ SVGElement("glyphRef") }}</li>
<li>{{ SVGElement("image") }}</li>
<li>{{ SVGElement("line") }}</li>
<li>{{ SVGElement("linearGradient") }}</li>
<li>{{ SVGElement("marker") }}</li>
<li>{{ SVGElement("mask") }}</li>
<li>{{ SVGElement("missing-glyph") }}</li>
<li>{{ SVGElement("path") }}</li>
<li>{{ SVGElement("pattern") }}</li>
<li>{{ SVGElement("polygon") }}</li>
<li>{{ SVGElement("polyline") }}</li>
<li>{{ SVGElement("radialGradient") }}</li>
<li>{{ SVGElement("rect") }}</li>
<li>{{ SVGElement("stop") }}</li>
<li>{{ SVGElement("svg") }}</li>
<li>{{ SVGElement("switch") }}</li>
<li>{{ SVGElement("symbol") }}</li>
<li>{{ SVGElement("text") }}</li>
<li>{{ SVGElement("textPath") }}</li>
<li>{{ SVGElement("title") }}</li>
<li>{{ SVGElement("tref") }}</li>
<li>{{ SVGElement("tspan") }}</li>
<li>{{ SVGElement("use") }}</li>
</ul>
</div>
<h2 id="Browser-Kompatibilität">Browser-Kompatibilität</h2>
<p>{{ CompatibilityTable() }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>{{ CompatVersionUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
<tr>
<td>Animation support</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatGeckoDesktop("5") }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
<td>{{ CompatUnknown() }}</td>
</tr>
</tbody>
</table>
</div>
<p> </p>
|