-
Notifications
You must be signed in to change notification settings - Fork 1
/
Test.html
32 lines (31 loc) · 1.06 KB
/
Test.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
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M0SCB1X0YP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M0SCB1X0YP');
</script>
<link rel="scoresfxx" href="score.mp3">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="CB.css">
<title>Hello</title>
</head>
<body onload="startGame()">
<div ID="BG" class="background"></div>
<audio id="dea">
<source src="HG-audio/death.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="sco">
<source src="HG-audio/score.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div class="idk" width="100%" height="100%">
<canvas id="canvas" width="1980" height="1080" onmousedown="mouseDown()" onmouseup="accelerate(0.05)">
</canvas>
</div>
<script src="Scripts/Storage.js"></script>
<script src="Scripts/HG.js"></script>
</body>