svg 进度条

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        box-sizing: border-box;
      }
      svg {
        border: 1px solid hotpink;
      
        line {
          stroke-dasharray: 150px;
          stroke-dashoffset: 150px;
          animation: line-move 2s ease infinite;
        }
      }

      @keyframes line-move {
        to {
          stroke-dashoffset: -150px;
        }
      }
    </style>
  </head>
  <body>
    <svg width="500px" height="300px">
      <line x1="50" y1="50" x2="200" y2="50" stroke="red" stroke-width="10" />
    </svg>
  </body>
</html>
posted @ 2024-05-07 17:14  _clai  阅读(3)  评论(0编辑  收藏  举报