count-down-ts
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

count-down-ts

NPM version Build Status Coverage Status code style: prettier

Countdown has timer, count, clear features. Test covered 100%.

Install

npm

npm install count-down-ts --save

yarn

yarn add count-down-ts --save

bower

bower install count-down-ts --save

Import

ES2015

import countdown from 'count-down-ts'

CommonJS

const countdown = require('count-down-ts')

script

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>DEMO</title>
  </head>
  <body>
    <script type="text/javascript" src="node_modules/count-down-ts/dist/count-down-ts.js"></script> 
    <script type="text/javascript">
      var countdown = window.countdown
    </script> 
  </body>
</html>

Usage

// init countdown
countdown.start(60, 0, c => console.log(c))
 
OR
 
countdown.start()
 
// cleat countdown setTimeout & count & timer
countdown.clear()
 
// countdown setTimeout return value
countdown.timer
 
// countdown current number
countdown.count

accept-expression

countdown.start(count, down, callback)

count: Default 60, type number. Tips: count must greater than down, or equal down.

down: Default 0, type number.

callback: Type (c: number) => void.

LICENSE

GPL v3 License

Readme

Keywords

Package Sidebar

Install

npm i count-down-ts

Weekly Downloads

1

Version

1.0.3

License

GPL-3.0

Unpacked Size

40.7 kB

Total Files

9

Last publish

Collaborators

  • sanshuiwang