This project is an animated counter for Angularjs. The directive counts from one number to another over a configured duration. Demo
Include the javascript file.
<script src="angular.count-to.min.js"></script>
Inject the count-to
directive in your app.
var myApp = angular.module('myApp', ['count-to']);
Apply the directive to a dom element.
<span count-to="{{countTo}}" value="{{countFrom}}" duration="4"></span>
The following attributes can be set as numbers on the directive element.
count-to
the number to count to.value
the number to start counting from.duration
how long the count should take in seconds.