UNPKG
count-time-down
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A helpful countdown class, 一个实用的的倒计时类
github.com/CN-Tower/count-time-down
CN-Tower/count-time-down
count-time-down
/
test
/
test.js
11 lines
(9 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * run this demo: npm run test:js */
const
CountDown
=
require
(
'..'
);
const
cd =
new
CountDown
(); cd.
time
=
10010
; cd.
interval
=
800
; cd.
onTick
=
cd
=>
console
.
log
(cd); cd.
start
();