Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <div class="first circle">
  2. <strong></strong>
  3. <h3>boxing</h3>
  4. </div>
  5.  
  6. $('.first.circle').circleProgress({
  7. value: 0.75,`
  8. size:150,
  9. startAngle:3,
  10. thickness:5,
  11. emptyFill: "#000",
  12. animation: {duration: 2200},
  13. fill:
  14. {
  15. color : "#D63138",
  16. }
  17. }).on('circle-animation-progress', function(event, progress) {
  18. $(this).find('strong').html(Math.round(75 * progress) + '<i>%</i>');
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement