jquery 将剩余时间恢复为花费时间 .setTimeout()
我有一个计时器正在运行,当它完成时,我将 var秒
传递给一个函数。 我需要将该计时器从剩余秒数转换为呼叫之前所花费的时间。
现在它说“您在 16 秒内单击所有 div”,但 16 秒是剩余时间。
这是可能的还是我必须构建另一个函数来处理这个问题?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你开始倒计时 30 秒,并且知道已经过去了 16 秒,那么经过的时间就是 30 秒 - 16 秒 = 14 秒
If you started a countdown of 30s and you know that 16s have already passed, then the time elapsed is 30s - 16s = 14s
您可以使用单独的
score
变量,在秒
倒计时时对秒进行计数。更新的示例: http://jsfiddle.net/dYqqv/12/
或者,更好的方法是只需减去开始时间(30 秒)和经过时间(
秒
)。更新的示例: http://jsfiddle.net/dYqqv/13/
You can use a seperate
score
variable that counts seconds up asseconds
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/