Animated counter component for React.js
$ npm install react-count-to --saveLive
http://react-count-to.herokuapp.com
Docker (thanks to Cirpo)
docker build -t react-count-to .docker run -p 3000:3000 -it react-count-to- connect to http://localhost:3000 and enjoy
import CountTo from 'react-count-to';
<CountTo to={1234} speed={1234} />- from (optional): Counting from (default: 0).
- to: Counting to.
- speed: Duration (in milliseconds).
- delay (optional): Delay (in milliseconds) between each refresh (default: 100).
- onComplete (optional): A callback triggered when counting is done.
- digits (optional): The number of digits to appear after the decimal point (default: 0).
- className (optional): HTML class attribute for counter element.
- min (optional) Minimum value for counting to.
$ npm test