Horizontal scroll component for javascript
A simple number animation using React hooks.
Try out the DEMO HERE
npm install --save react-hook-animate-number
//
// \FUNCTIONAL COMPONENT
//
import React from 'react'
import useAnimateNumber from 'react-hook-animate-number'
const Example = () => {
const animatedNumber = useAnimateNumber({ number: 1203 })
return <>{animatedNumber.number}</>
}
{
number: 3, // Number
isAnimating: true, // Boolean
isGoingUp: true // boolean
}
- number
number
Returns the current number - isAnimating
boolean
Is the number currently being animated - isGoingUp
boolean
Is the number currently going up or down
Attribute | Default | Type | Description |
---|---|---|---|
number | 0 | number |
The number to display |
durationInMs | 4000 | number |
The duration of the animation |
decimalPlaces | 0 | number |
The number of decimal places |
easingFunctionName | "easeOutExpo" | string |
The animation easing function name, options are: `"easeInOutCubic" |
- Add more tests
MIT © desduvauchelle