ここで、ある合計から別の合計にアニメーション化するカウンターの多くのソリューションを見つけました。
これが私が今使っているものです:
jQuery.fn.extend({
ts : function (from, to, time) {
var steps = 1,
self = this,
counter;
if (from - to > 0) {
steps = -1;
};
from -= steps;
function step() {
self.text(from += steps);
if ((steps < 0 && to >= from) || (steps > 0 && from >= to)) {
clearInterval(counter);
};
};
counter = setInterval(step, time || 5);
}
});
var total = $('.total').ts(56000,56941);
それはうまくいきますが、56,941 のように、合計にコンマを追加したいと思います。これは可能ですか?
ありがとうございました!