Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-countdown-circle-timer

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-countdown-circle-timer

Lightweight React countdown timer component with color and progress animation based on SVG

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31K
decreased by-8.08%
Maintainers
1
Weekly downloads
 
Created
Source

React Countdown Circle Timer

React countdown timer component in a circle shape with color and progress animation to urge with pleasure your users.

  • Lightweight only 8KB
  • Build with 0 dependencies
  • Performance optimized with single requestAnimationFrame loop to animate color and progress (no setInterval used)
  • Transition between colors during the countdown
  • Support for linear gradient
  • Fully customizable content in the center of the circle

Installation

yarn add react-countdown-circle-timer

or

npm install react-countdown-circle-timer

Basic usage

import { CountdownCircleTimer } from 'react-countdown-circle-timer';

const UrgeWithPleasureComponent = () => (
    <CountdownCircleTimer
        durationSeconds={10}
        colors={[
            ['#004777', .33],
            ['#F7B801', .33],
            ['#A30000']
        ]}
        isPlaying
    />
);

Props

Prop NameTypeDefaultDescription
durationSecondsnumberrequiredCountdown duration in seconds
colorsArray<[color HEX: string, transition duration: float number between 0 and 1]>requiredArray of tuples: 1st param - color in HEX format; 2nd param - time to transition to next color represented as a fraction of the total duration
sizenumber180Width and height of the SVG element
strokeWidthnumber12Path stroke width
strokeLinecapEnum{ 'round', 'square' }'round'Path stroke line cap
trailColorstring'#d9d9d9'Circle trail color - takes any valid color format (HEX, rgb, rgba, etc.)
isPlayingbooleanfalsePlay and pause animation
* isLinearGradientbooleanfalse* Apples linear gradient on top of the circle. The gradient doesn't follow the circle path. Works best with two colors.
gradientUniqueKeystring-Unique ID for the linearGradient element. It takes random ID if it's not provided.
renderTimefunction(remainingTime: number, elapsedTime: number, isPlaying: boolean): ReactNode-Render prop function to customize the content in the center of the circle. The content is centered using flexbox.
onCompletefunction()-On complete handler

Roadmap

  • Test coverage
  • a11y support

Keywords

FAQs

Package last updated on 03 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc