Create SVG progress circle

前端 未结 7 1097
再見小時候
再見小時候 2020-12-30 15:34

Anyone know how to create a circle \"progressbar\" in svg? I need to specify the percentage of the circle, så that a color grows in the shape of a cake.

The growing

7条回答
  •  隐瞒了意图╮
    2020-12-30 15:56

    Following is the idea I used to use. With a bit of modification in css and animation tag we can achieve more effects for intuitive user experiences.

    ---SAMPLE CODE----

    .over{
      -webkit-animation: rotator 1.5s ease-in-out infinite;
      stroke-dasharray: 107,38;
    }
    .bag{
      position: absolute;
    }
    @-webkit-keyframes rotator {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    Hope you were looking for something kind of this. :)

提交回复
热议问题