-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.45 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
<!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>Document</title>
</head>
<script src="https://cdn.tailwindcss.com"></script>
<style>
* {
margin: 0;
}
body {
background-color: black;
}
</style>
<body>
<p class="fixed text-white text-sm ml-2 mt-1 select-none">
<span>Score: </span><span id="score_display">0</span>
</p>
<div id="score_box" class="fixed inset-0 flex justify-center items-center">
<div class="bg-white max-w-md w-full p-6 text-center">
<h1 id="score_final" class="text-4xl font-bold leading-none">
0
</h1>
<p class="text-sm text-gray-700 mb-4">Points</p>
<button id="start_game" class="bg-blue-500 text-white w-full p-y-3 rounded-full text-sm">
Start Game
</button>
</div>
</div>
<canvas></canvas>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js" integrity="sha512-f8mwTB+Bs8a5c46DEm7HQLcJuHMBaH/UFlcgyetMqqkvTcYg4g5VXsYR71b3qC82lZytjNYvBj2pf0VekA9/FQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./index.js"></script>
</html>