-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
61 lines (50 loc) · 1.85 KB
/
script.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
55
56
57
58
59
60
61
function clicked(id){
var checkbox_1 = document.getElementById("checkbox-1");
var checkbox_2 = document.getElementById("checkbox-2");
var checkbox_3 = document.getElementById("checkbox-3");
switch(id){
case "box-1":
//box-1 change
checkbox_1.style.color = "white";
checkbox_1.style.backgroundColor = "#0648B3";
//box-2
checkbox_2.style.color = "#0648B3";
checkbox_2.style.backgroundColor = "white";
//box-3 change
checkbox_3.style.color = "#0648B3";
checkbox_3.style.backgroundColor = "white";
break;
case "box-2":
//box-1 change
checkbox_1.style.color = "#0648B3";
checkbox_1.style.backgroundColor = "white";
//box-2
checkbox_2.style.color = "white";
checkbox_2.style.backgroundColor = "#0648B3";
//box-3 change
checkbox_3.style.color = "#0648B3";
checkbox_3.style.backgroundColor = "white";
break;
case "box-3":
//box-1 change
checkbox_1.style.color = "#0648B3";
checkbox_1.style.backgroundColor = "white";
//box-2
checkbox_2.style.color = "#0648B3";
checkbox_2.style.backgroundColor = "white";
//box-3 change
checkbox_3.style.color = "white";
checkbox_3.style.backgroundColor = "#0648B3";
break;
default:
//box-1 change
checkbox_1.style.color = "#0648B3";
checkbox_1.style.backgroundColor = "white";
//box-2
checkbox_2.style.color = "#0648B3";
checkbox_2.style.backgroundColor = "white";
//box-3 change
checkbox_3.style.color = "#0648B3";
checkbox_3.style.backgroundColor = "white";
}
}