forked from iphysresearch/iphysresearch.github.io_Archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test4countdown.html
36 lines (31 loc) · 886 Bytes
/
test4countdown.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<DIV id="CountMsg" class="HotDate">
<span id="td">00天</span>
<span id="th">00时</span>
<span id="tm">00分</span>
<span id="ts">00秒</span>
</DIV>
<script type="text/javascript">
function getRTime(){
var EndTime= new Date('2017/10/23 10:00:00'); //截止时间
var NowTime = new Date();
var t =EndTime.getTime() - NowTime.getTime();
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("td").innerHTML = d + "天";
document.getElementById("th").innerHTML = h + "时";
document.getElementById("tm").innerHTML = m + "分";
document.getElementById("ts").innerHTML = s + "秒";
}
setInterval(getRTime,1000);
</script>
</body>
</html>
<!-- https://blog.csdn.net/liweizhong193516/article/details/74685902 -->