I have a circle score rating item in HTML, CSS (don't know their real name) basically the blue bar around the circle goes up to the point of the number.
I would like the bar to go around as an animation when the page loads. Currently I use PHP to output the number however this means the bar has no animation.
Please see image
A simple way I was thinking this could be done, is if PHP has any build in function to output up to a number, for example instead of outputting 3 it went 1,2,3 which could make the animation.
Code :
<div id="quad_rating_circle">
<div class="c100 p<?php echo $score; ?> medium custom center dark fill">
<span><?php echo $score; ?></span>
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
</div>
I have spent a good hour and haven't come up with anything, any help is greatly appreciated.
Thank you