JSFiddle - React, Tailwind, and code Playground

HTML

あなたは<span class="count">20000</span>人目のお客様です!

CSS

span{color:red;font-weight:bold;}

JavaScript

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