JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://rawgit.com/kimmobrunfeldt/progressbar.js/1.0.0/dist/progressbar.js"></script>
<div id="container">My</div>
CSS
#container {
margin: 20px;
width: 200px;
height: 200px;
}
JavaScript
$('document').ready(function() {
var bar = new ProgressBar.Circle(container, {
strokeWidth: 6,
easing: 'easeInOut',
duration: 1400,
color: '#FFEA82',
trailColor: '#eee',
trailWidth: 1,
svgStyle: null
});
$('#container').hover(function() {
bar.animate(1);
}, function() {
bar.animate(0);
});
});