jquery 将剩余时间恢复为花费时间 .setTimeout()

发布于 2024-12-20 00:13:15 字数 263 浏览 1 评论 0原文

我有一个计时器正在运行,当它完成时,我将 var秒 传递给一个函数。 我需要将该计时器从剩余秒数转换为呼叫之前所花费的时间。

现在它说“您在 16 秒内单击所有 div”,但 16 秒是剩余时间。

这是可能的还是我必须构建另一个函数来处理这个问题?

这是代码: http://jsfiddle.net/dYqqv/10/

I have a timer running and when it finishes I pass the var seconds into a function.
I need to convert this timer from seconds left to the time spent until the call.

Now it says "You click all div's in 16 seconds", but the 16 seconds is the time left.

Is this possible or do I have to build an another function to handle this?

Here is the code:
http://jsfiddle.net/dYqqv/10/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

地狱即天堂 2024-12-27 00:13:15

如果你开始倒计时 30 秒,并且知道已经过去了 16 秒,那么经过的时间就是 30 秒 - 16 秒 = 14 秒

function win() {
    clearTimeout(timer);
    $('#panel').hide();
    var timeElapsed = 30 - seconds;
    $('#won').fadeIn('slow').html('<span class="">You click all div\'s in ' + timeElapsed + ' seconds</span>');
}

If you started a countdown of 30s and you know that 16s have already passed, then the time elapsed is 30s - 16s = 14s

function win() {
    clearTimeout(timer);
    $('#panel').hide();
    var timeElapsed = 30 - seconds;
    $('#won').fadeIn('slow').html('<span class="">You click all div\'s in ' + timeElapsed + ' seconds</span>');
}
疾风者 2024-12-27 00:13:15

您可以使用单独的 score 变量,在 倒计时时对秒进行计数。

更新的示例: http://jsfiddle.net/dYqqv/12/

或者,更好的方法是只需减去开始时间(30 秒)和经过时间()。

更新的示例: http://jsfiddle.net/dYqqv/13/

You can use a seperate score variable that counts seconds up as seconds counts down.

Updated example: http://jsfiddle.net/dYqqv/12/

Or, a better way is to just subtract the starting time (30s) and the elapsed time (seconds).

Updated example: http://jsfiddle.net/dYqqv/13/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文