Files
frontend/public/template_5/js/counter.js
toom1996 ce686563bf update
2025-07-14 14:44:23 +08:00

14 lines
351 B
JavaScript

$(document).ready(function () {
$('.counter').each(function () {
$(this).prop('Counter', 0).animate({
Counter: $(this).text()
}, {
duration: 4000,
easing: 'swing',
step: function (now) {
$(this).text(Math.ceil(now));
}
});
});
});