count-down-ts
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
countdown.start(60, 0, c => console.log(c))
OR
countdown.start()
countdown.clear()
countdown.timer
countdown.count
accept-expression
countdown.start(count, down, callback)
count
: Default 60, type number. count must greater than down, or equal dowm.
down
: Default 0, type number
callback
: Type (height: number|undefined) => void.
LICENSE
GPL v3 License