Skip to content

saebekassebil/react-counter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

react-counter

A dead-simple incremental counter component with easing animations.

npm install react-counter
var React = require('react');
var Counter = require('react-counter');

React.render(
  <Counter begin={0} end={1000} time={2000} easing="outCube" />,
  document.body
);

Usage

<Counter
  begin={Number}  // The number to count from
  end={Number}    // The number to count to
  time={Number}   // The time (in ms) the counting animation should take
  easing={String} // Which easing function to use (default="outCube")
  />

The easing property, can be a name of any easing function from ease-component

About

Simple incremental counter with easings

Resources

Stars

Watchers

Forks

Packages

No packages published