美文网首页
倒计时时间修正

倒计时时间修正

作者: loewe0202 | 来源:发表于2019-08-01 11:22 被阅读0次
    let startTime = new Date().getTime(),
        count = 0;
    // 倒计时时间修正处理
    const countDownStart = () => {
        // 业务逻辑处理 ...
        count++;
        let offset = new Date().getTime() - (startTime + count * 1000),
            nextTime = 1000 - offset;
        if (nextTime < 0) nextTime = 0;
        timer = setTimeout(countDownStart, nextTime);
    };
    timer = setTimeout(countDownStart, 1000);
    

    相关文章

      网友评论

          本文标题:倒计时时间修正

          本文链接:https://www.haomeiwen.com/subject/zocqdctx.html