誰かが特定の増分でカウンターを増やしたい場合は、次を使用します。
// HTML
<span class="stat-count">10000</span>
//JS
$(function() {
function count($this){
var current = parseInt($this.html(), 10);
current = current + 50; /* Where 50 is increment */
$this.html(++current);
if(current > $this.data('count')){
$this.html($this.data('count'));
} else {
setTimeout(function(){count($this)}, 5);
}
}
$(".stat-count").each(function() {
$(this).data('count', parseInt($(this).html(), 10));
$(this).html('0');
count($(this));
});
});
特定の制限、カウント時間、およびカウント単位でのページ読み込み時の Jquery カウント数。