码迷,mamicode.com
首页 > 其他好文 > 详细

Time倒计时

时间:2017-03-07 13:24:00      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:dead   log   当前时间   new   mit   current   gettime   adl   blog   

commitTimeDate = new Date("2016/11/9 10:02:40").getTime() + 24*60*60*1000;//截止时间
myDate = new Date();//获取当前时间
currentTime=myDate.getTime();//当前时间换成毫秒
deadlineTime = commitTimeDate -  currentTime;//时间差
let reminderHour = Math.floor(deadlineTime / (1000 * 60 * 60));//倒计时要写的小时
let reminderSecond = Math.floor(deadlineTime / (1000 * 60)- reminderHour*60);//倒计时要填的分钟
let reminderMinute = Math.floor(deadlineTime / 1000 - reminderSecond*60 - reminderHour*60*60);//倒计时要填的秒

 

Time倒计时

标签:dead   log   当前时间   new   mit   current   gettime   adl   blog   

原文地址:http://www.cnblogs.com/xiangru0921/p/6514105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!