-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice.html
96 lines (54 loc) · 1.58 KB
/
practice.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<style></style>
<title>Title</title>
<link rel="stylesheet" href="css/practice.css">
</head>
<body>
<script>
"use strict";
// CREATE HELPER FUNCTION TO HAVE ACCESS TO DATE, HOURS, MINUTES, AND SECONDS.
function time() {
var date = new Date();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
var list = [hours, minutes, seconds].map(function (num) {
return num < 10 ? "0" + num : String(num);
});
hours = list[0];
minutes = list[1];
seconds = list[2];
return hours + minutes + seconds;
}
function output(time) {
var color = "#" + time;
document.body.bgColor = color;
document.body.textContent = color;
document.body.style.color = "#fff";
document.body.style.fontSize = "100PX";
document.body.style.textAlign = "center";
document.body.style.height = "100vh";
}
function startClock(callback, name) {
document.body.addEventListener("dblclick", function () {
callback(name);
});
}
function stopClock(callback, name) {
document.body.addEventListener("click", function () {
callback(name);
});
}
function init() {
var tickTock = setInterval(function () {
output(time());
}, 1000);
stopClock(clearInterval, tickTock);
startClock(init, tickTock);
}
init();
</script>
</body>
</html>