$('.counterup').each(function () {
$(this).prop('Counter',0).animate({
Counter: $(this).text()
}, {
duration: 4000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
Previous Code
JS fetch post API Data in 5 min simple way
js fetch post API is very simple way. some line of ...
Next Code
JS set interval for an event until element show
Sometimes we need to active an event when a specif ...
0 Comment