0

要在画布上创建滴答运动而不是数字的滑动,我想在 0.2 秒内向上移动数字并等待 0.8 秒。这些代码适用于滑动运动,但要实现我迷路的滴答声。

jsfiddle

var ittt = 0;
var add = null;

function MinuteTimer() {
    add = setInterval(function () {
        totime();
        if (ittt % (40 * 60) == 0) {
            ittt = 0;
        }
    }, 5);
};

function stoptimer() {
    clearInterval(add);
};

function totime() {
    drawcanvasbackground();
    drawnumberscanvas(ittt);
    ittt += 1;
    if (ittt % 40 == 0 && ittt > 0) {
        clearInterval(add);
        setTimeout(MinuteTimer(), 800);
    };
};
4

0 回答 0