所属分类: 网页特效-动画效果 2023-08-08 10:36:09
$(".count").each(function () { $(this) .prop("Counter", 0) .animate( { Counter: $(this).text(), }, { duration: 4000, easing: "swing", step: function (now) { now = Number(Math.ceil(now)).toLocaleString('en'); $(this).text(now); }, } ); });