Skip to content

Counter-Up is a lightweight jQuery plugin that counts up to a targeted number when the number becomes visible.

License

Notifications You must be signed in to change notification settings

onepartscissors/Counter-Up

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Counter-Up

Counter-Up is a jQuery plugin that animates a number from zero (counting up towards it). It supports counting up:

  • integers 12345
  • floats 0.1234
  • formatted numbers 1,234,567.00

Features:

  • Auto-detect for integers, floats or formatted numbers
  • The plugin will also use the number of decimal places the original number is using.
  • Lightweight: ~1kb
  • Minimal setup

Requires waypoints.js

Demo

DEMO

Usage

Include

<script src="http://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script src="jquery.counterup.min.js"></script>

HTML

<span class="counter">1,234,567.00</span>
<span>$</span><span class="counter">1.99</span>
<span class="counter">12345</span>

jQuery

$('.counter').counterUp();

or with extra parameters

$('.counter').counterUp({
    delay: 10,
    time: 1000,
    total: 56
});

delay - The delay in milliseconds per number count up

time - The total duration of the count up animation

total - The total number the counter will count up to. This is to solve the issue raised in bfintal#28 (comment)

Social Stuff

Twitter: @bfintal & @gambitph

Google+: +Benjamin Intal

About

Counter-Up is a lightweight jQuery plugin that counts up to a targeted number when the number becomes visible.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 63.3%
  • JavaScript 36.7%