A tiny dependency-free JavaSript library for animating numeric values.
npm install @js4y/count-upA tiny dependency-free JavaSript library for animating numeric values.
Live Demo: https://bukacekd.github.io/count-up
- easy to use
- rich formatting using Intl.NumberFormat
- possibility to define a custom easing function
- simple configuration and api
Npm
``bash`
npm install @js4y/count-up
CDN
`bash`
Npm
`javascript
import {CountUp} from '@js4y/count-up';
new CountUp(document.body, {
from: 1,
to: 10
});
`
CDN
`javascript