SVG 学习第一部分,包括基本结构、<line>
、<rect>
、<circle>
和<ellipse>
图形元素。简单罗列,英文为主。
References
Basic structure
1 2 3
| <svg xmlns="http://www.w3.org/2000/svg"> …… </svg>
|
Example
1 2 3
| <svg xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50" fill="wheat"/> </svg>
|
SVG graphics elements
<path>
<line>
<rect>
<circle>
<line>
<polyline>
<polygon>
<image>
<use>
<line>
x1
, y1
→ x2
, y2
x1
, y1
: Start position
x2
, y2
: End position
stroke
& stroke-width
The effect of varying stroke widths
1 2 3 4 5 6 7
| <line x1="5" y1="10" x2="99" y2="30" stroke-width=".5" stroke="red"/>
<line x1="5" y1="30" x2="99" y2="50" stroke-width="1" stroke="red"/>
<line x1="5" y1="50" x2="99" y2="70" stroke-width="2.5" stroke="red"/>
<line x1="5" y1="70" x2="99" y2="90" stroke-width="4" stroke="blue"/>
|
stroke-dasharray
& stroke-lineup
The effect of other attributes on line elements
1 2 3 4 5 6 7
| <line x1="15" y1="15" x2="140" y2="135" stroke-width="25" stroke="blue" stroke-linecap="round"/>
<line x1="15" y1="15" x2="140" y2="135" stroke-width="25" stroke="aqua" stroke-dasharray="8,3,2,18"/>
<line x1="15" y1="155" x2="160" y2="60" stroke-width="25" stroke="blue"/>
<line x1="15" y1="155" x2="160" y2="60" stroke-width="25" stroke="orange" stroke-dasharray="8,3,2"/>
|
<rect>
x
, y
: Top-left corner position
height
, width
A variety of rectangles
1 2 3 4 5 6 7 8 9 10 11 12 13
| <rect x="62" y="25" height="110" width="16" fill="rgb(100%,50%,50%)" stroke="black" stroke-width="2"/>
<rect x="35" y="35" height="30" width="50" fill="red" stroke="black" stroke-width="2"/>
<rect x="5" y="60" height="30" width="50" fill="#f88" stroke="black" stroke-width="2"/>
<rect x="25" y="70" height="30" width="50" fill="#ff8888" stroke="black" stroke-width="2"/>
<rect x="65" y="60" height="30" width="50" fill="#eac" stroke="black" stroke-width="2"/>
<rect x="85" y="70" height="30" width="50" fill="#eeaacc" stroke="black" stroke-width="2"/>
<rect x="60" y="95" height="30" width="50" fill="rgb(255,0,0)" stroke="black" stroke-width="2"/>
|
<circle>
cx
, cy
: Centre position
r
: Radius
Circles with varying fill, stroke, stroke-width and stroke-dasharray
1 2 3 4 5 6 7 8 9
| <circle cx="80" cy="50" r="40"/>
<circle cx="80" cy="110" r="40" fill="red"/>
<circle cx="80" cy="170" r="40" fill="yellow" stroke="blue" />
<circle cx="80" cy="160" r="20" fill="red" stroke="black" stroke-width="10"/>
<circle cx="140" cy="110" r="60" fill="none" stroke="#579" stroke-width="30" stroke-dasharray="3,5,8,13">
|
<ellipse>
cx
, cy
: Centre position
rx
: Half of the distance from the leftmost side to centre
ry
: Half of the distance from top to centre
1 2 3 4 5 6 7 8 9 10 11 12 13
| <ellipse cx="80" cy="110" rx="75" ry="105" fill="#538"/>
<ellipse cx="80" cy="110" rx="60" ry="40" fill="black" stroke="red" stroke-width="25"/>
<ellipse cx="80" cy="110" rx="35" ry="20" fill="#538" stroke="yellow" stroke-width="25"/>
<ellipse cx="80" cy="50" rx="40" ry="30" fill="red" stroke="black" stroke-width="25"/>
<ellipse cx="80" cy="50" rx="30" ry="20" fill="orange" stroke="red" stroke-width="10"/>
<ellipse cx="80" cy="170" rx="40" ry="30" fill="yellow" stroke="orange" stroke-width="25" />
<ellipse cx="80" cy="170" rx="30" ry="20" fill="red" stroke="black" stroke-width="10"/>
|