SOURCE

console 命令行工具 X clear

                    
>
console
<svg width="260" height="90">
    <text x="0" y="80" class="svg-text">Cool</text>
</svg>
 .svg-text {
        font-size: 100px;
        fill: #fff;
        stroke: rgb(49, 129, 250);
        stroke-width: 2;
        stroke-dasharray: 600;
        animation: text-move 5s linear infinite;
    }

    @keyframes text-move {
        0% {
            stroke-dashoffset: 600;
        }

        100% {
            stroke-dashoffset: 0;
        }
    }