-
Notifications
You must be signed in to change notification settings - Fork 22.5k
/
index.md
174 lines (149 loc) · 3.99 KB
/
index.md
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
---
title: y2
slug: Web/SVG/Attribute/y2
page-type: svg-attribute
spec-urls:
- https://svgwg.org/svg2-draft/shapes.html#LineElementY2Attribute
- https://svgwg.org/svg2-draft/pservers.html#LinearGradientElementY2Attribute
---
{{SVGRef}}
The **`y2`** attribute is used to specify the second y-coordinate for drawing an SVG element that requires more than one coordinate. Elements that only need one coordinate use the {{SVGAttr("y")}} attribute instead.
## Elements
You can use this attribute with the SVG elements described in the sections below.
### `<line>`
For {{SVGElement('line')}}, `y2` defines the y coordinate of the ending point of the line.
<table class="properties">
<tbody>
<tr>
<th scope="row">Value</th>
<td>
<strong
><a href="/en-US/docs/Web/SVG/Content_type#length"
><length></a
></strong
>
|
<strong
><a href="/en-US/docs/Web/SVG/Content_type#percentage"
><percentage></a
></strong
>
|
<strong
><a href="/en-US/docs/Web/SVG/Content_type#number"
><number></a
></strong
>
</td>
</tr>
<tr>
<th scope="row">Default value</th>
<td><code>0</code></td>
</tr>
<tr>
<th scope="row">Animatable</th>
<td>Yes</td>
</tr>
</tbody>
</table>
```css hidden
html,
body,
svg {
height: 100%;
}
```
```html
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<line x1="1" x2="9" y1="5" y2="1" stroke="red" />
<line x1="1" x2="9" y1="5" y2="5" stroke="green" />
<line x1="1" x2="9" y1="5" y2="9" stroke="blue" />
</svg>
```
{{EmbedLiveSample('line', '100%', 200)}}
### `<linearGradient>`
For {{SVGElement('linearGradient')}}, `y2` defines the y coordinate of the ending point of the _gradient vector_ used to map the gradient stop values. The exact behavior of this attribute is influenced by the {{SVGAttr('gradientUnits')}} attributes
<table class="properties">
<tbody>
<tr>
<th scope="row">Value</th>
<td>
<strong
><a href="/en-US/docs/Web/SVG/Content_type#length"
><length></a
></strong
>
|
<strong
><a href="/en-US/docs/Web/SVG/Content_type#percentage"
><percentage></a
></strong
>
|
<strong
><a href="/en-US/docs/Web/SVG/Content_type#number"
><number></a
></strong
>
</td>
</tr>
<tr>
<th scope="row">Default value</th>
<td><code>0%</code></td>
</tr>
<tr>
<th scope="row">Animatable</th>
<td>Yes</td>
</tr>
</tbody>
</table>
```css hidden
html,
body,
svg {
height: 100%;
}
```
```html
<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg">
<!--
By default the gradient vector end at the top right
corner of the bounding box of the shape it is applied to.
-->
<linearGradient y2="0%" id="g0">
<stop offset="5%" stop-color="black" />
<stop offset="50%" stop-color="red" />
<stop offset="95%" stop-color="black" />
</linearGradient>
<rect x="1" y="1" width="8" height="8" fill="url(#g0)" />
<!--
Here the gradient vector end at the bottom right
corner of the bounding box of the shape it is applied to.
-->
<linearGradient y2="100%" id="g1">
<stop offset="5%" stop-color="black" />
<stop offset="50%" stop-color="red" />
<stop offset="95%" stop-color="black" />
</linearGradient>
<rect x="11" y="1" width="8" height="8" fill="url(#g1)" />
</svg>
```
{{EmbedLiveSample('linearGradient', '100%', 200)}}
## Examples
```css hidden
html,
body,
svg {
height: 100%;
}
```
```html
<svg viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg">
<line x1="2" x2="22" y1="20" y2="0" stroke="red" />
<line x1="2" x2="22" y1="20" y2="10" stroke="green" />
<line x1="2" x2="22" y1="20" y2="20" stroke="blue" />
</svg>
```
{{EmbedLiveSample("Examples", '100%', 200)}}
## Specifications
{{Specifications}}