I have a circular graph that I want to use to track progress. I use this SASS definition:
@for $i from 0 through 100
.circle-chart-#{$i}
background: conic-gradient($cyan $i * 1%, $graphBackground $i * 1%)
Is there any way to animate (or fake animation) the change of the conic-gradient in CSS?