0.1.4 • Published 4 years ago

che-react-number-easing v0.1.4

Weekly downloads
5,205
License
ISC
Repository
github
Last release
4 years ago

React Number Easing

React component for fancy number transitions.

Live demo

react-number-easing screenshot

Installation

npm i -S che-react-number-easing

Usage.

const NumberEasing = require('che-react-number-easing');

<NumberEasing
  ease="quintInOut"
  precision={2}
  speed={300}
  trail={true}
  useLocaleString={true}
  value={15}
/>

Props

  • [ease]: The easing equation for the animation.
  • [precision]: How many decimal places you want to show?
    • Default: 2
    • Type: number
  • [speed]: How fast do you want to finish the animation?
    • Default:500 (ms)
    • Type: number
  • [trail]: Do you want trailing zeroes?
    • Default: false
    • Type: boolean
  • [useLocaleString]: Use number formatting based on locale?
    • Default: false
    • Type: boolean
  • [value]: The value that you want to display at the end of the animation.
    • Required
    • Type: number

Build

If you want to build this from source, you will need babel and less.

npm install

And run the pre publish script

npm run prepare
0.1.4

4 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago