jQuery Numinate Plugin Demos

Count to infinity

$('#to-infinity').numinate({format: 'Page has been loaded %counter% seconds ago.'});

HP left, under 3 seconds

Press start to get attacked ;)
$('#healt-point').numinate({format: 'You have %counter% HP left!!', from: 1200, to: 350, runningInterval: 1000, stepUnit: 5, autoStart: false});

Bomb defuser kit

Press start to get killed :3

$('#bomb-defuser-kit').numinate({format: 'Bomb will explode in %counter% seconds!!', from: 10, to: 0, runningInterval: 10000, stepUnit: 0.1, autoStart: false, 
	onStop: function(element, options, current) {
		element.text('We are in safe!');
	}
});

Earn money

Press start to get rich :3
$('#account').numinate({
	format: 'Your balance is %counter% \$\$',
	from: 500,
	to: 250000,
	runningInterval: 1500,
	stepUnit: 1000,
	autoStart: false,
	autoRemove: false,
	onStop: function(elem) {
		setTimeout(function() {
			$(elem).text('Now pay the taxes...');
		}, 1500);
		
	},
	onComplete: function(elem) {
		setTimeout(function() {
			$(elem).text('Your balance is -500.000 \$\$... Easy come, easy go :P');
		}, 2500);
	},
});