整理了一下代码,把 Timer 和 balls 都封装成了对象,看着容易理解一点。
效果地址:https://zaishuo8.github.io/Timer/
代码地址:https://github.com/zaishuo8/Timer
新手一枚,希望有老司机多多指点
效果地址:https://zaishuo8.github.io/Timer/
代码地址:https://github.com/zaishuo8/Timer
新手一枚,希望有老司机多多指点
2017-04-10
d=parseInt((tarTime-curTime)/(1000 * 60 * 60 * 24))
h=parseInt((tarTime -curTime)%(1000 * 60 * 60 * 24) / (1000 * 60 * 60))
m=parseInt((tarTime-curTime)%(1000 * 60 * 60 * 24) % (1000 * 60 * 60) / (1000 * 60))
s=parseInt((tarTime-curTime)%(1000 * 60 * 60 * 24) % (1000 * 60 * 60) % (1000 * 60) / 1000)
h=parseInt((tarTime -curTime)%(1000 * 60 * 60 * 24) / (1000 * 60 * 60))
m=parseInt((tarTime-curTime)%(1000 * 60 * 60 * 24) % (1000 * 60 * 60) / (1000 * 60))
s=parseInt((tarTime-curTime)%(1000 * 60 * 60 * 24) % (1000 * 60 * 60) % (1000 * 60) / 1000)
2017-03-30