-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.74 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
<link rel="icon" type="image/x-icon"
href="https://raw.githubusercontent.com/loglot/Yet-Another-Collectathon/main/logo.ico">
<link rel="stylesheet" href="style.css"<!---->
<div class="background">
<div class="header">
<div class="inner-header flex">
</div>
<div>
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="-5" fill="rgba(25,25,25,1)" />
<use xlink:href="#gentle-wave" x="48" y="-3" fill="rgba(35,35,35,1)" />
<use xlink:href="#gentle-wave" x="48" y="0" fill="rgba(45,45,45,1" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(55,55,55,1)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(65,65,65,1)" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="rgba(75,75,75,1)" />
</g>
</svg>
</div>
</div>
</div>
<div class="gradient"></div>
<div class="blurOpacity"></div>
</div>
<title>Yet Another Bouncer</title>
<style>
canvas {
padding: 0;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
canvas {
display: block;
margin: 0 auto;
}
</style>
<!----> <canvas id="game_screen" width="1676" height="918">
This Game Requires The HTML5 Canvas, And Javascript To Function
</canvas> <!---->
<script type="module" src="main.js"></script>