1
shuishen
2022-12-15 dd2de597d9b12b8a6064486d434f9865c10e9e57
1
1 files modified
10 ■■■■ changed files
src/views/home/components/leftContainer.vue 10 ●●●● patch | view | raw | blame | history
src/views/home/components/leftContainer.vue
@@ -1056,19 +1056,19 @@
.mypath {
    // stroke: #05D380;
    stroke-width: 2;
    stroke-dasharray: 20, 10, 5, 5, 5, 10;
    stroke-dashoffset: 888;
    stroke-dasharray: 222;
    // stroke-dashoffset: 888;
    fill: none;
    animation: go 12s linear infinite forwards;
    animation: go 6s linear infinite forwards;
}
@keyframes go {
    0% {
        stroke-dashoffset: 888;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dashoffset: 1888;
    }
}
</style>