-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcount.html
More file actions
77 lines (63 loc) · 2.36 KB
/
count.html
File metadata and controls
77 lines (63 loc) · 2.36 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
<html>
<head>
</head>
<body>
<div id="countdown"></div>
<button id="changeBase">Human Readable</button>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment.min.js"></script>
<script>
$(document).ready(function() {
// countdown starts in binary
var binary = true;
var countdownInterval;
var countdownContent;
// current time
var currentTime = moment();
// event start time
var eventTime = moment('2014-08-22 08:00'); //2014-08-22 08:00
// check if event has started
if (eventTime.unix() > currentTime.unix()) {
// update countdown at start
updateCountdown();
setTimeout(function() {
// update time before creating interval
currentTime = moment();
updateCountdown();
countdownInterval = setInterval(function() {
currentTime = moment();
updateCountdown();
}, 1000)
}, 1000 - currentTime.milliseconds());
// button onclick change base and update countdown
$('#changeBase').click(function() {
if (binary) {
$(this).text('Machine Readable');
binary = false;
} else {
$(this).text('Human Readable');
binary = true;
}
updateCountdown();
});
} else {
$('#changeBase').remove();
$('#countdown').text('It\'s on');
}
function updateCountdown() {
if (binary) {
countdownContent = (eventTime.diff(currentTime, 'days') % 60).toString(2) + ' days ' + (eventTime.diff(currentTime, 'hours') % 60).toString(2) + ' hours ' + (eventTime.diff(currentTime, 'minutes') % 60).toString(2) + ' minutes ' + (eventTime.diff(currentTime, 'seconds') % 60).toString(2) + ' seconds';
} else {
countdownContent = eventTime.diff(currentTime, 'days') % 365 + ' days ' + eventTime.diff(currentTime, 'hours') % 24 + ' hours ' + eventTime.diff(currentTime, 'minutes') % 60 + ' minutes ' + eventTime.diff(currentTime, 'seconds') % 60 + ' seconds';
}
$('#countdown').text(countdownContent);
if(eventTime.unix() < currentTime.unix()) {
clearInterval(countdownInterval);
$('#changeBase').remove();
$('#countdown').text('It\'s on');
}
}
});
</script>
</body>
</html>