-
Notifications
You must be signed in to change notification settings - Fork 0
/
10.4_prac.html
84 lines (76 loc) · 1.77 KB
/
10.4_prac.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
<!DOCTYPE html>
<html>
<head>
<title>More jscript button</title>
<style>
.toggle-button {
background-color: rgb(208, 206, 206);
color: black;
font-size: 14px;
border: none;
border-radius: 8px;
margin-right: 10px;
padding: 8px 15px;
}
.istoggle {
background-color: black;
color: white;
}
.toggle-button2 {
background-color: rgb(208, 206, 206);
color: black;
font-size: 14px;
border: none;
border-radius: 8px;
margin-right: 10px;
padding: 8px 15px;
}
.istoggle2 {
background-color: black;
color: white;
}
.toggle-button3 {
background-color: rgb(208, 206, 206);
color: black;
font-size: 14px;
border: none;
border-radius: 8px;
margin-right: 10px;
padding: 8px 15px;
}
.istoggle3 {
background-color: black;
color: white;
}
</style>
</head>
<body>
<button class="toggle-button js-button " onclick="
button = document.querySelector('.js-button');
if(!button.classList.contains('istoggle')){
button.classList.add('istoggle');
}
else{
button.classList.remove('istoggle');
}
">Gaming</button>
<button class="toggle-button2 js-button2 " onclick="
button = document.querySelector('.js-button2');
if(!button.classList.contains('istoggle2')){
button.classList.add('istoggle2');
}
else{
button.classList.remove('istoggle2');
}
">Music</button>
<button class="toggle-button3 js-button3 " onclick="
button = document.querySelector('.js-button3');
if(!button.classList.contains('istoggle3')){
button.classList.add('istoggle3');
}
else{
button.classList.remove('istoggle3');
}
">Tech</button>
</body>
</html>