jQuery countTo
jQuery countTo animates countups and countdowns within target DOM elements.
Arguments & Options
.countTo(target, [options])
Arguments
- target - The number that will be counted to.
- options - Optional The object that contains options.
Options
Option | Description |
---|---|
decimals | Integer Number of decimal places to the right to display. |
duration | Integer Duration in seconds of the count animation. |
min_steps | Integer Minimum steps that occur during the animation. |
max_steps | Integer Maximum steps that occur during the animation. |
Simple Example
<span class="timer-a">0</span> <span class="timer-b">0</span> <span class="timer-c">5</span> <span class="timer-d">10</span> <script type="text/javascript"> // count to 100 $(".timer-a").countTo(100); // count to 100 over 5 seconds (default is 1s) $(".timer-b").countTo(100, {"duration": 5}); // count to 30.5, displaying one decimal to the right $(".timer-c").countTo(30.5, {"decimals": 1}); // count to 10 in no more than 10 steps $(".timer-d").countTo(20, {"max_steps": 10}); </script>
Usage
-
Include jQuery:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
-
Include plugin:
<script src="build/jquery-countTo.min.js"></script>
-
Call plugin:
<script type="text/javascript"> $('.my-element').countTo(42); </script>
Requirements
- jQuery v1.0+
License
jQuery-countTo is released under the MIT License.