SVG之旅:描边特性
在上一节介绍SVG填充特性中,提到了SVG中另一个特性描边特性(stroke
)。SVG的描边特性主要包括stroke
、stroke-width
、stroke-opacity
、stroke-dasharray
、stroke-linecap
、stroke-linejoin
和stroke-miterlimit
等属性。在这一节中,主要围绕这几个SVG属性进行展开。
在SVG中咱们通过stroke
来对绘制的图形边框进行设置,我们可以对图形边框的颜色、粗细、透明度,连接端,线帽和虚线等进行设置。为了更好的理解SVG中的描边特性,我们采用一个葡萄的轮廓图来展开介绍。
特别声明:接下来的葡萄轮廓图来自于@jonitrythall的《Using SVG stroke Attributes》一文中。
stroke
stroke
属性主要用来定义SVG绘制的形状和路径的边框颜色。类似于CSS中的border-color
。和fill
特性一样,可以在SVG的内联代码中使用stroke
属性,也可以在CSS样式代码中使用stroke
属性。如果想让SVG绘制的图形不带有任何边框,只需要设置stroke
的值为none
即可。如果你不设置任何的颜色值,那么默认的颜色为black
。
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" d=".../>
<g>
<path class="stem" fill="none" stroke="#59351C" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" d=" ..."/>
</g>
</svg>
stroke-width
stroke-width
属性的值用来设置绘制图形边框的宽度,类似于border-width
。其默认值是1
。如果值是百分数,那这个值是基于视图的尺寸来计算。比如,下面的示例,把葡萄的边框宽度设置为6px
、葡萄的茎设置为5px
,叶子设置为2px
。
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" d="..."/>
</g>
</svg>
stroke-linecap
当使用<line>
或者<polyline>
画线时,可以给stroke-linecap
指定不同的值来确定线的头尾形状。也就是说,给一个开放路径的定义端点采用哪种形状。其主要有四个值:butt
、round
、square
和inherit
。对应的效果如下:
把葡萄的边框设置为butt
、葡萄的茎设置为square
,葡萄的叶子设置为round
:
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="butt" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="square" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" d="..."/>
</g>
</svg>
其中使用round
有一点需要注意,round
是有半径的圆弧形,直径就是stroke-width
的值。
stroke-linejoin
stroke-linejoin
定义画笔在路径和基本形状上的转角如何展示。言外之意,用来指定线段在图形棱角处交叉时的效果。其主要有四值值:miter
(尖的)、round
(圆的)、bevel
(平的)和inherit
。
比如下面的示例,我们将葡萄的转角linejoin
属性从round
改变成bevel
时发生的变化:
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="bevel" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="..."/>
</g>
</svg>
同样为了更易理解,用下图来帮助大家理解:
stroke-miterlimit
当两条线相遇会形成一个尖角,并且设置了stroke-linejoin="miter"
时,stroke-miterlimit
属性就是允许这个交汇处/转角可延伸到多远的距离。交汇处的长度也被称为斜接长度,测量的是交汇处内角和外角之间的距离。
stroke-miterlimit
接受两个值:miter
和miter-clip
。两者交汇处效果的对比如下:
事实上,这个值就是斜接长度和stroke-width
的比值的一个界限值。1.0
是该属性的最小可能值。
下面的葡萄设置了stroke-miterlimit="1.0"
,形成一种斜角效果。第二幅的stroke-miterlimit="4.0"
:
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="1.0" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="..."/>
</g>
</svg>
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4.0" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="..."/>
</g>
</svg>
效果如下:
stroke-dasharray
stroke-dasharray
属性允许我们将路径转换成虚线而不是实线。通过这个属性,可以指定虚线的长度及以虚线之间的距离,用逗号或空格分开。
如果提供的值有奇数个,那这个列会重复产生至偶数个值。比如,8,6,4
变成8,6,4,8,6,4
,正如下面展示的第二个葡萄。在这个值中只放一个数字,导致虚线之间会有一个和一条虚线长度个等的空隙。在这个值中只放一个数字,导致在虚线之间会有一个和一条虚线长度相等的空隙。
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="20,15,10,8" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="..."/>
</g>
</svg>
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="8,6,4" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="..."/>
</g>
</svg>
stroke-dashoffset
stroke-dashoffset
指定虚线的起始偏移距离。
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="40,10" stroke-dashoffset="35" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="..."/>
</g>
</svg>
效果如下:
在上面的例子中,我们将虚线设置成40px
长,dashoffset
为35px
。在路径的起点,虚线有35px
是不可见的,在35px
至40px
之间显示虚线,这就是为什么第一段虚线显示的格外的短。
为了能让大家更好的理解stroke-dasharray
和stroke-dashoffset
,可以通过下图来理解:
也可以拖动下面示例中的进度条来看效果:
stroke-opacity
stroke-opacity
属性很直观,就是允许我们在图形上设置一个透明度。这个值是0
至1
中的小数,0
表示完全透明。比如下面的示例效果:
<svg width="250px" height="265px" viewBox="0 0 150 165">
<path class="grapes" fill="none" stroke="#765373" stroke-width="6" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="1.0" stroke-opacity
="0.5" d="..."/>
<g>
<path class="stem" fill="none" stroke="#59351C" stroke-width="5" stroke-linecap="round" stroke-opacity="0.2" d="..."/>
<path class="leaf" fill="#7AA20D" stroke="#7AA20D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.8" d="..."/>
</g>
</svg>
示例中葡萄边框的透明度设置为stroke-opacity="0.5"
,葡萄的茎设置为stroke-opacity="0.2"
,葡萄的叶子设置为stroke-opacity="0.8"
:
SVG的线条动画
stroke
属性可以动起来的。这样可以创作一些独一无二的效果,比如,当你的路径的stroke-sashoffset
动画描绘出来的时候。
为了让下面第一个葡萄的路径显示成“画出来”的效果,stroke-dasharray
设置成刚好覆盖整条路径的虚线长度。然后设置一个匹配的stroke-dashoffset
也是足够长可以覆盖路径。暂时让整个路径基本上看不到。
通过 @keyframes draw
的stroke-dashoffset
在50%的点设回到0
,让它显示的就好像正在画自己,也好像在回放。
第二幅葡萄的stroke-dasharray
是70px
,通过 @keyframes shift
,我们将动画效果设置成进行到一半的时候stroke-dashoffset
是200px
。
为了更好的看清楚,咱们把上面的Demo修改一下:
.grapes {
stroke-dashoffset: 10;
stroke-dasharray: 30 5;
stroke-width: 3;
}
通过浏览器的编辑器来修改stroke-dashoffset
的值:
总结
这篇文章咱们主要学习了一下SVG中描边相关的属性的使用。可以通过stroke
相关的属性,给绘制的形状或路径设置边框(描边)的颜色、粗线、线型、透明度,线帽等。另外配合CSS的animation
来修改stroke-dashoffset
的值,还可以绘制出一些很有意思的效果。比如上面的动画效果。事实上,在SVG通过stroke-dashoffset
和stroke-dasharray
可以完成很多线形动效,很多人称之为线型之美。那么下一接咱们就来学学SVG的线型之美。希望大家会喜欢。
如需转载,烦请注明出处:https://www.fedev.cn/svg/svg-stroke.htmljordan retro 11 mens size