count-time-down
Version:
A helpful countdown class, 一个实用的的倒计时类
19 lines • 442 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="../index.js"></script>
</head>
<body>
<script>
const cd = new CountDown();
cd.time = 10010;
cd.interval = 800;
cd.onTick = cd => console.log(cd);
cd.start();
</script>
</body>
</html>