-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html style="touch-action: none; overflow: hidden; overscroll-behavior-y: contain; position: fixed">
<head>
<meta charset="utf-8" />
<!-- fit for mobile screens -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel='manifest' href='./manifest.webmanifest' />
</head>
<body style="touch-action: none; overflow: hidden; overscroll-behavior-y: contain; position: fixed">
<div id="app">
<div id="react-layer"></div>
<div id="topBar"></div>
<canvas id="gameScreen" style="opacity: 0;"></canvas>
<div id="gameOverlay">
<div class="container">
<div id="loading" class="la-ball-clip-rotate">
<div></div>
</div>
<div class="center">
<div id="countdown"></div>
<div id="banner">Game Title</div>
<div id="instructions"></div>
</div>
<div id="score1">score</div>
<div id="score2">score</div>
<i id="mute" class="material-icons">volume_up</i>
<i id="pause" class="material-icons">pause</i>
</div>
</div>
</div>
<script src="./index.js"></script>
<script src="./mobilebundle.js">
// fixes for mobile devices
</script>
</body>
</html>