1

我们有一个动画计数器,可以快速计数到一个数字。我们需要在数字上加一个逗号(以千计),但不知道如何(显然我们是专家)。

我们所拥有的非常适合柜台:

(function($) {
$.fn.countTo = function(options) {
    // merge the default plugin settings with the custom options
    options = $.extend({}, $.fn.countTo.defaults, options || {});

    // how many times to update the value, and how much to increment the value on each update
    var loops = Math.ceil(options.speed / options.refreshInterval),
        increment = (options.to - options.from) / loops;

    return $(this).each(function() {
        var _this = this,
            loopCount = 0,
            value = options.from,
            interval = setInterval(updateTimer, options.refreshInterval);

        function updateTimer() {
            value += increment;
            loopCount++;
            $(_this).html(value.toFixed(options.decimals));

            if (typeof(options.onUpdate) == 'function') {
                options.onUpdate.call(_this, value);
            }

            if (loopCount >= loops) {
                clearInterval(interval);
                value = options.to;

                if (typeof(options.onComplete) == 'function') {
                    options.onComplete.call(_this, value);
                }
            }
        }
    });
};

$.fn.countTo.defaults = {
    from: 0,  // the number the element should start at
    to: 100,  // the number the element should end at
    speed: 1000,  // how long it should take to count between the target numbers
    refreshInterval: 100,  // how often the element should be updated
    decimals: 0,  // the number of decimal places to show
    onUpdate: null,  // callback method for every time the element is updated,
    onComplete: null,  // callback method for when the element finishes updating
};
})(jQuery);

jQuery(function($) {
    $('.shares').countTo({
        from: 2,
        to: 1826,
        speed: 3000,
        refreshInterval: 50,
        onComplete: function(value) {
            console.debug(this);
        }
    });
});

有什么建议么?

4

4 回答 4

2

添加这个:

 .replace(/\B(?=(\d{3})+(?!\d))/g, ","));

$(_this).html(value.toFixed(options.decimals))

所以你的代码将是这样的:

function updateTimer() {
                value += increment;
                loopCount++;
                $(_this).html(value.toFixed(options.decimals).replace(/\B(?=(\d{3})+(?!\d))/g, ","));

                if (typeof(options.onUpdate) == 'function') {
                    options.onUpdate.call(_this, value);
                }

                if (loopCount >= loops) {
                    clearInterval(interval);
                    value = options.to;

                    if (typeof(options.onComplete) == 'function') {
                        options.onComplete.call(_this, value);
                    }
                }
            }
于 2015-02-27T06:57:32.510 回答
1

我正在看这篇文章,因为我在使用相同的 jQuery 片段时遇到了同样的问题。这是我非常简单的解决方案:只需将onUpdate函数编辑为此...

onUpdate: function (value) {
    var counter= $("#counter").text();
    $("#members").text(counter.substring(0, 3)+","+counter.substring(3, 6));
}

这仅适用于小于 1,000,000 的数字。否则,您将更改.substring()参数。

于 2013-10-23T19:22:09.233 回答
0

我通过添加一个 onUpdate 函数解决了这个问题,就像其他人说的那样,但是由于我不知道对象,我发现我可以使用“this”来设置内部文本。效果很好!

        jQuery(this).find('.milestone-count').delay(6000).countTo({
            from: 0,
            to: 100000,
            speed: 2000,
            refreshInterval: 100,
            onUpdate: function (value) {
                if(this.innerText) // firefox doesn't support innerText
                {
                    this.innerText = newVal;
                } else {
                    this.textContent = newVal;
                }
            }
        });
于 2014-04-02T17:46:16.160 回答
0

我还没有测试过,但我相信你会明白的,

jQuery.i18n.formatNumber( value, format, [ options ] )Returns: String 

所以你需要将你的 onUpdateMethod 从 Null 替换为具有类似身体的东西

control.innerText =  jQuery.i18n.formatNumber( value, "n0")

如果要强制执行区域设置,则可以通过传递语言环境来完成

更多信息在这里 - http://www.jquerysdk.com/api/jQuery.i18n.formatNumber

于 2013-06-10T07:24:17.840 回答