-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (56 loc) · 2.66 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Piano-Tiles Game</title>
<style>
@keyframes glowing {
0% {
background-color: #e11313;
box-shadow: 0 0 5px #de0a0a;
}
50% {
background-color: #d70f34;
box-shadow: 0 0 20px #d30827;
}
100% {
background-color: #ec0b26;
box-shadow: 0 0 5px #a80528;
}
}
.bg-primary {
animation: glowing 1000ms 1;
}
</style>
</head>
<body>
<div >
<h1 style="text-align: centre;">Piano-Tiles Game</h1>
</div>
<div class="megacontainer" id="check">
<div ><button class="container0" id="mybutton0" style="width: 100px; height: 100px; " ></button>
<button class="container1" id="mybutton1" style="width: 100px; height: 100px; "></button>
<button class="container2" id="mybutton2" style="width: 100px; height: 100px; "></button>
<button class="container3" id="mybutton3" style="width: 100px; height: 100px; "></button>
</div>
<div ><button class="container4" id="mybutton4" style="width: 100px; height: 100px; "></button>
<button class="container5" id="mybutton5" style="width: 100px; height: 100px; "></button>
<button class="container6" id="mybutton6" style="width: 100px; height: 100px; "></button>
<button class="container7" id="mybutton7" style="width: 100px; height: 100px; "></button>
</div>
<div ><button class="container8" id="mybutton8" style="width: 100px; height: 100px; "></button>
<button class="container9" id="mybutton9" style="width: 100px; height: 100px; "></button>
<button class="container10" id="mybutton10"style="width: 100px; height: 100px; "></button>
<button class="container11" id="mybutton11" style="width: 100px; height: 100px; "></button>
</div>
<div ><button class="container12" id="mybutton12" style="width: 100px; height: 100px; "></button>
<button class="container13" id="mybutton13" style="width: 100px; height: 100px; "></button>
<button class="container14" id="mybutton14" style="width: 100px; height: 100px; "></button>
<button class="container15" id="mybutton15" style="width: 100px; height: 100px; "></button>
</div>
</div>
<script src="gamescript.js"></script>
</body>
</html>