Commit fd2d96c4 by doszhang

dos

parent fb6442c4
......@@ -324,9 +324,10 @@ function countDown(callback) {
let angle = -360;
let countdown = 3;
let timer;
$('.countdown-num').text(countdown).addClass('animate');
countDownCtx.fillStyle = bgColor;
timer = setInterval(function () {
$('.countdown-num').text(countdown).addClass('animate');
angle = ((angle * 10) + 36) / 10;
countDownCtx.clearRect(0, 0, countDownCanvas.width, countDownCanvas.height);
countDownCtx.sector(countDownCanvas.width / 2, countDownCanvas.height / 2, countDownCanvas.width / 2, 0, angle).fill();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment