use-color-change
React hook for flashing a text when a value becomes higher or lower.
Installation
This module can be used in any React project that supports hooks.
npm i use-color-change
Usage
Use the hook and pass a number as the first parameter. Specify the colors you want to flash and how long the animation should take.
The return value of the hook has the type {animation: string}
, you can pass it as a style for any element and also further customize it for example using animation-timing-function
if you please.
Function signature
value
: The numeric value for which the animation should be based on.options
:higher
: The color which should be flashing when the value increases. You can passnull
for no animation.lower
: The color which should be flashing when the value decreases. You can passnull
for no animation.duration
: (optional) How long the flash should take in miliseconds. Default is1800
.
Author
© Jonny Burger