-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.js
54 lines (48 loc) · 1.15 KB
/
clock.js
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
/* Simple Javascript Binary Clock
Copyright (c) 2010 CS Truter
Written by Christoff Truter
email: Christoff@cstruter.com
*/
function DecToBin(value)
{
var result = '';
while(value != 0)
{
result = (((value % 2) > 0) ? '1' : '0') + result;
value = value >> 1;
}
return result;
}
function binaryClock()
{
var current = new Date();
var units = [['h', DecToBin(current.getHours())],
['m', DecToBin(current.getMinutes())],
['s', DecToBin(current.getSeconds())]];
document.getElementById('hr').innerHTML = current.getHours();
document.getElementById('mr').innerHTML = current.getMinutes();
document.getElementById('sr').innerHTML = current.getSeconds();
for(var i = 0; i < 6; i++)
{
for(var u = 0; u < units.length; u++)
{
var id = units[u][0] + Math.pow(2, i);
var obj = document.getElementById(id);
if (obj != null)
{
obj.className = 'inactive';
obj.innerHTML = '0';
var index = (units[u][1].length - 1) - i;
if (index > -1)
{
if (units[u][1].charAt(index) == '1')
{
obj.className = 'active';
obj.innerHTML = '1';
}
}
}
}
}
setTimeout(binaryClock, 1000);
}