标签:
M x y ||
m dx dy
L x y (or l dx dy)
H x (or h dx)
V y (or v dy)
C x1 y1, x2 y2, x y (or c dx1 dy1, dx2 dy2, dx dy)
S x2 y2, x y (or s dx2 dy2, dx dy)
Q x1 y1, x y (or q dx1 dy1, dx dy)
T x y (or t dx dy)
A rx ry x-axis-rotation large-arc-flag sweep-flag x y
a rx ry x-axis-rotation large-arc-flag sweep-flag dx dy
//x-axis-rotation 椭圆旋转的角度
//large-arc-flag 圆弧的角度 (>180 1 || <180 0 )
//sweep-flag 圆弧圆心的位置 (左下 1 || 右上 0)
Z (or z)
注:大写表示绝对定位,小写表示相对定位。
<svg class="svg"width="200px"
height="200px"
xmlns="http://www.w3.org/2000/svg">
<path d="M 100, 100 m 0, –50 a 50, 50 0 1 1 50, 50"
fill="transparent"
stroke-linecap="round"
stroke="#ffff00"
stroke-width="5px"
</path>
</svg>
缺点:需要知道终点的相对位置(x, y)——红色的字体,计算起来比较麻烦。
<svg class="svg" width="180" height="180" xmlns="http://www.w3.org/2000/svg">
<path d="M 87.5,87.5 m 0, -85 a 85,85 0 1 1 0,170 a 85,85 0 1 1 0,-170"
fill="transparent"
stroke-linecap="round"
stroke="#ffff00"
stroke-width="5px"
stroke-dasharray="534px,534px"
stroke-dashoffset="512px"
transition="stroke-dashoffset 0.6s ease 0s,
stroke 0.6s ease">
</path>
</svg>
说明:利用stroke-dashoffset 指定dash模式开始的位置:
也就是说,默认情况下,dash长度为534,gap长度为534,
指定后,第一个dash长度变为512,gap长度不变,也就画出了512长度的弧线。
标签:
原文地址:http://www.cnblogs.com/jun3101s/p/5955835.html