11 lines
162 B
CSS
11 lines
162 B
CSS
|
.flow {
|
||
|
stroke-dasharray: 8;
|
||
|
animation: dash 0.5s linear;
|
||
|
animation-iteration-count: infinite;
|
||
|
}
|
||
|
@keyframes dash {
|
||
|
to {
|
||
|
stroke-dashoffset: -16;
|
||
|
}
|
||
|
}
|