I was wondering if I could help with the animation of the decimal counter.
Everything works for me, but I want the account to increase to 100, but it always falls into random numbers, such as 99.31% or 99.56%. I tried many different solutions, but none of them worked.
var percent_hours = $('.percent_hours').text();
$({numberValue: 0}).animate({numberValue: percent_hours}, {
duration: 1100,
easing: 'linear',
step: function() {
$('.percent_hours').text(Math.ceil(this.numberValue*100)/100 + "%");
}
});
Here is my jsfiddle .
Any help would be greatly appreciated.
Thanks in advance.
source
share