A animation react component for count change
npm install react-count-animation

Using TWEEN algorithm, digital animation based on react.
markdown
npm install react-count-animation@latest
`How to use
import stylesheet:
`js
import 'react-count-animation/dist/count.min.css';
``js
import React from 'react';
import ReactDOM from 'react-dom';
import AnimationCount from 'react-count-animation';const Count = () => {
const settings = {
start: 99923,
count: 9999999,
duration: 3000,
decimals: 4,
useGroup: true,
animation: 'up',
};
const settings2 = {
start: 1,
count: 9999999,
duration: 1000,
decimals: 2,
useGroup: true,
animation: 'roll',
};
const settings3 = {
start: 1,
count: 9999999,
duration: 3000,
decimals: 2,
useGroup: true,
animation: 'slide',
};
return (
Count Animation
Count Roll
Count Slide
);
}export default Count;
``