クラス名「カウント」を持つ6つのdivがあります。これを複製しようとしています: http://jsfiddle.net/4v2wK/
私は単に数字をアニメーション化しようとしていますが、何も機能しません。これが私のコードです:
$('.count').each(function(){
$({someValue: 1000}).animate({someValue: this.value}, {
duration: 6000,
easing: 'swing', // can be anything
step: function () { // called on every step
// Update the element's text with rounded-up value:
$(this).text(commaSeparateNumber(Math.round(this.someValue)));
}
});
});
ご協力ありがとうございました。
イザベル