カウンター表示jquery plugin
できることYou can download this project in either zip or tar formats.
You can also clone the project with Git by running:
$ git clone git://github.com/kihn/tally_counter
5秒ごとに数取器のようにカウントアップするサンプル
$(function(){
$("#sample-number").tallyCounter(
{
numbersImage: "./img/number_up.png",
widthNumber: 60,
heightNumber: 60,
startNumber : 111,
});
$('#sample-1').everyTime(5000,'autoIncrement',function(){
$("#sample-number").tallyCounter('inc',1);
});
});