A configurable React component wrapper around CountUp.js.
Click here to view on CodeSandbox.
Click here to get to the previous docs.
- Installation
- Usage
- API
- Props
className: string
decimal: string
decimals: number
delay: ?number
duration: number
end: number
prefix: string
redraw: boolean
preserveValue: boolean
separator: string
start: number
startOnMount: boolean
suffix: string
useEasing: boolean
easingFn: (t: number, b: number, c: number, d: number) => number
formattingFn: (value: number) => string
onEnd: ({ pauseResume, reset, start, update }) => void
onStart: ({ pauseResume, reset, update }) => void
onPauseResume: ({ reset, start, update }) => void
onReset: ({ pauseResume, start, update }) => void
onUpdate: ({ pauseResume, reset, start }) => void
- Render props
- Props
- Protips
- License
yarn add react-countup
import CountUp from 'react-countup';
<CountUp end={100} />
This will start a count up transition from 0
to 100
on render.
<CountUp
start={-875.039}
end={160527.012}
duration={2.75}
separator=" "
decimals={4}
decimal=","
prefix="EUR "
suffix=" left"
onEnd={() => console.log('Ended! 👏')}
onStart={() => console.log('Started! 💨')}
>
{({ countUpRef, start }) => (
<div>
<span ref={countUpRef} />
<button onClick={start}>Start</button>
</div>
)}
</CountUp>
The transition won't start on initial render as it needs to be triggered manually here.
Tip: If you need to start the render prop component immediately, you can set delay={0}.
<CountUp start={0} end={100}>
{({ countUpRef, start }) => (
<div>
<span ref={countUpRef} />
<button onClick={start}>Start</button>
</div>
)}
</CountUp>
Render start value but start transition on first render:
<CountUp start={0} end={100} delay={0}>
{({ countUpRef }) => (
<div>
<span ref={countUpRef} />
</div>
)}
</CountUp>
Note that delay={0}
will automatically start the count up.
<CountUp delay={2} end={100} />
import { useCountUp } from 'react-countup';
const SimpleHook = () => {
const { countUp } = useCountUp({ end: 1234567 });
return <div>{countUp}</div>;
};
import { useCountUp } from 'react-countup';
const CompleteHook = () => {
const { countUp, start, pauseResume, reset, update } = useCountUp({
start: 0,
end: 1234567,
delay: 1000,
duration: 5,
onReset: () => console.log('Resetted!'),
onUpdate: () => console.log('Updated!'),
onPauseResume: () => console.log('Paused or resumed!'),
onStart: ({ pauseResume }) => console.log(pauseResume),
onEnd: ({ pauseResume }) => console.log(pauseResume),
});
return (
<div>
<div>{countUp}</div>
<button onClick={start}>Start</button>
<button onClick={reset}>Reset</button>
<button onClick={pauseResume}>Pause/Resume</button>
<button onClick={() => update(2000)}>Update to 2000</button>
</div>
);
};
CSS class name of the span element.
Note: This won't be applied when using CountUp with render props.
Specifies decimal character.
Default: .
Amount of decimals to display.
Default: 0
Delay in seconds before starting the transition.
Default: null
Note:
delay={0}
will automatically start the count up.
Duration in seconds.
Default: 2
Target value.
Static text before the transitioning value.
Forces count up transition on every component update.
Default: false
Save previously ended number to start every new animation from it.
Default: false
Specifies character of thousands separator.
Initial value.
Default: 0
Use for start counter on mount for hook usage.
Default: true
Static text after the transitioning value.
Enables easing. Set to false
for a linear transition.
Default: true
Easing function. Click here for more details.
Default: easeInExpo
Function to customize the formatting of the number
Callback function on transition end.
Callback function on transition start.
Callback function on pause or resume.
Callback function on reset.
Callback function on update.
Ref to hook the countUp instance to
Pauses or resumes the transition
Resets to initial value
Starts or restarts the transition
Updates transition to the new end value (if given)
By default, the animation is triggered if any of the following props has changed:
duration
end
start
If redraw
is set to true
your component will start the transition on every component update.
MIT