-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoGoCountdown.html
More file actions
120 lines (109 loc) · 2.86 KB
/
PoGoCountdown.html
File metadata and controls
120 lines (109 loc) · 2.86 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Teko&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
font-family: 'Teko', sans-serif;
}
body{
font-weight: 100;
background: url(https://i.imgur.com/fITvCl7.jpg);
background-position-y: 100%;
background-repeat: no-repeat;
background-size: cover;
position: relative;
display: flex;
flex-flow: column-reverse nowrap;
align-items: center;
justify-content: stretch;
height: 100vh;
}
#clockdiv{
color: #fff;
display: inline-block;
font-weight: 100;
text-align: center;
font-size: 10vh;
}
#clockdiv > div{
padding: 10px;
display: inline-block;
width: 17vw;
}
#clockdiv div > span{
background: blue;
display: block;
font-size: 20vh;
margin: 0 1rem;
}
.smalltext{
padding-top: 5px;
text-transform: uppercase;
margin-bottom: -1rem;
}
</style>
<title>PoGo Maintenance</title>
</head>
<body>
<div id="clockdiv">
<div>
<div class="smalltext">Days</div>
<span class="days"></span>
</div>
<div>
<div class="smalltext">Hours</div>
<span class="hours"></span>
</div>
<div>
<div class="smalltext">Minutes</div>
<span class="minutes"></span>
</div>
<div>
<div class="smalltext">Seconds</div>
<span class="seconds"></span>
</div>
</div>
<script>
function getTimeRemaining(endtime) {
var t = Date.parse(endtime) - Date.parse(new Date());
var seconds = Math.floor((t / 1000) % 60);
var minutes = Math.floor((t / 1000 / 60) % 60);
var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
var days = Math.floor(t / (1000 * 60 * 60 * 24));
return {
'total': t,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
}
function initializeClock(id, endtime) {
var clock = document.getElementById(id);
var daysSpan = clock.querySelector('.days');
var hoursSpan = clock.querySelector('.hours');
var minutesSpan = clock.querySelector('.minutes');
var secondsSpan = clock.querySelector('.seconds');
function updateClock() {
var t = getTimeRemaining(endtime);
daysSpan.innerHTML = t.days;
hoursSpan.innerHTML = ('0' + t.hours).slice(-2);
minutesSpan.innerHTML = ('0' + t.minutes).slice(-2);
secondsSpan.innerHTML = ('0' + t.seconds).slice(-2);
if (t.total <= 0) {
clearInterval(timeinterval);
}
}
updateClock();
var timeinterval = setInterval(updateClock, 1000);
}
var deadline = new Date(Date.parse('01 Jun 2020 11:00:00 PDT'));
initializeClock('clockdiv', deadline);
</script>
</body>
</html>