-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (86 loc) · 2.42 KB
/
index.html
File metadata and controls
93 lines (86 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>traffic-light stimulator</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
background-image: url(traffic.png);
background-repeat: no-repeat;
background-size: cover;
border: 20px;
}
h1 {
background-color: white;
color: brown;
border: 2px solid brown; /* fixed border */
padding: 10px;
margin-top: 20px;
border-radius: 5px;
}
.traffic-light {
width: 100px;
height: 300px;
border: 1px solid black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
margin-top: 50px;
}
.light {
width: 80px;
height: 80px;
border-radius: 50%;
margin: 10px;
background-color: transparent;
}
.red {
background-color: red;
}
.yellow {
background-color: yellow;
}
.green {
background-color: green;
}
</style>
</head>
<body>
<!-- Added title here -->
<h1>Traffic Light Simulator</h1>
<div class="traffic-light">
<div class="light red"></div>
<div class="light yellow"></div>
<div class="light green"></div>
</div>
<script>
const redLight = document.querySelector(".red");
const yellowLight = document.querySelector(".yellow");
const greenLight = document.querySelector(".green");
function changeLight() {
setTimeout(() => {
redLight.style.backgroundColor = "red";
yellowLight.style.backgroundColor = "transparent";
greenLight.style.backgroundColor = "transparent";
setTimeout(() => {
redLight.style.backgroundColor = "transparent";
yellowLight.style.backgroundColor = "yellow";
greenLight.style.backgroundColor = "transparent";
setTimeout(() => {
redLight.style.backgroundColor = "transparent";
yellowLight.style.backgroundColor = "transparent";
greenLight.style.backgroundColor = "green";
changeLight();
}, 2000);
}, 1000);
}, 2000);
}
changeLight();
</script>
</body>
</html>