Animation should work when I scroll to the desired block. Tell me how to implement?
var bar = new ProgressBar.Circle(container, { strokeWidth: 6, easing: 'easeInOut', duration: 1400, color: '#FFEA82', trailColor: '#eee', trailWidth: 1, svgStyle: null }); bar.animate(1.0); // Number from 0.0 to 1.0 #container { margin: 20px; width: 200px; height: 200px; } <script src="https://rawgit.com/kimmobrunfeldt/progressbar.js/1.0.0/dist/progressbar.js"></script> <div id="container"></div>