A nice js HTML page countdown can be accurate to seconds

  • 2020-03-30 04:11:05
  • OfStack

A nice js HTML page countdown can be accurate to seconds, very simple, but practical


 <!doctype html> 
<html> 
<head> 
<meta charset="utf-8"> 

</head> 

<body> 

<DIV id="CountMsg" class="HotDate"> 
<span id="t_d">00 day </span> 
<span id="t_h">00 when </span> 
<span id="t_m">00 points </span> 
<span id="t_s">00 seconds </span> 
</DIV> 
<script type="text/javascript"> 
function getRTime(){ 
var EndTime= new Date('2014/10/23 10:00:00'); //By the time
var NowTime = new Date(); 
var t =EndTime.getTime() - NowTime.getTime(); 
/*var d=Math.floor(t/1000/60/60/24); 
t-=d*(1000*60*60*24); 
var h=Math.floor(t/1000/60/60); 
t-=h*60*60*1000; 
var m=Math.floor(t/1000/60); 
t-=m*60*1000; 
var s=Math.floor(t/1000);*/ 

var d=Math.floor(t/1000/60/60/24); 
var h=Math.floor(t/1000/60/60%24); 
var m=Math.floor(t/1000/60%60); 
var s=Math.floor(t/1000%60); 

document.getElementById("t_d").innerHTML = d + " day "; 
document.getElementById("t_h").innerHTML = h + " when "; 
document.getElementById("t_m").innerHTML = m + " points "; 
document.getElementById("t_s").innerHTML = s + " seconds "; 
} 
setInterval(getRTime,1000); 
</script> 
</body> 
</html>

Related articles: