simple-timer-js

2.0.4 • Public • Published

SimpleTimer for JavaScript

npm

A simple timer to show timer countdown on websites.

Installation

Yarn

$ yarn add simple-timer-js

NPM

$ npm install simple-timer-js

Usage

  1. Require the SimpleTimer

    var SimpleTimer = require("simple-timer-js");
  2. Create a new SimpleTimer instance with the expected duration, timerContainer, originalText.

    var timerDurationInSeconds = 60;
    var uniqueTimerContainerClassName = "timer-container";
    var originalTextInContainer = "";
    var timer = new SimpleTimer(timerDurationInSeconds, uniqueTimerContainerClassName, originalTextInContainer);
  3. Call startTimer() to start the timer.

    timer.startTimer();
  4. If you want to force end the timer, simply call endTimer(). Otherwise, the timer will stop on its own, after it reaches the given timerDuration.

    timer.endTimer();

Contributing

We'd love to accept your patches and contributions to this project! Checkout contributing and code of conduct to learn more.

License

Refer to the license file.

Readme

Keywords

Package Sidebar

Install

npm i simple-timer-js

Weekly Downloads

5

Version

2.0.4

License

Apache 2.0

Unpacked Size

19.1 kB

Total Files

7

Last publish

Collaborators

  • zaimramlan