SVG stroke-dasharray 、stroke-dashoffset

stroke-dasharray

stroke-dasharray用来绘制路径虚线。可以有一个或者多个参数,下面看一下它在不同参数下的效果。

1.不添加stroke-dasharray属性

#rect {
	stroke-width: 6px;
	fill: yellow;
	stroke: red;
	/*stroke-dasharrry:10;*/
}
<svg height="100" width="300">
    <rect id="rect" height="100" width="300" />
</svg>

图1:矩形的边框为实线
图1

2.一个参数

stroke-dasharray:10;

图2:矩形的边框为虚线。红色线段和间隙都是10px;
图2

3.两个参数

stroke-dasharray:10 20;

图3:矩形的边框为虚线。红色线段:10px , 间隙是20px;
图3
4.三个参数

stroke-dasharray:10 20 30;

图4:红色线段和间隙长短不一。从矩形绘制的起点左上角开始:红->10,间隙->20,红->30,间隙->10,…
在这里插入图片描述
可以发现它是以所给的参数为一个周期,从路径起点开始进行循环绘制。

stroke-dashoffset

stroke-dashoffset 是对整条虚线从起点开始向相反的方向做偏移。

stroke-dashoffset:100;

图5:向反方向偏移100px;
在这里插入图片描述

应用:

stroke-dashoffset动画

#rect {
	stroke-width: 6px;
	fill: #fff;
	stroke: red;
	stroke-dasharray: 20;
	animation: path-animation 5s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}
		
@keyframes path-animation {
  from {
	stroke-dashoffset: 100%; 
  }
  to {
	stroke-dashoffset: 0%; 
  } 
}

动画效果
动画