-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (115 loc) · 4 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script src="https://www.google.com/recaptcha/enterprise.js?render=6LftblwpAAAAALstQQwQh5TKctuMzaOpfORHVfro"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1T90DQS163"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1T90DQS163');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<title>Object Promise</title>
<style>
#game-box {
position: absolute;
width: 10px;
height: 10px;
background-color: blue;
z-index: 1; /* Set z-index to 1 to place it above the red boxes */
}
.red-box {
position: absolute;
width: 10px;
height: 10px;
background-color: red;
cursor: pointer;
z-index: 0; /* Set z-index to 0 to place it below the blue box */
}
#timer-display {
position: fixed;
top: 50px;
left: 50%;
transform: translateX(-50%);
}
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: #fff;
border: 2px solid #000;
text-align: center;
}
.arrow {
width: 30px;
height: 30px;
background-color: #ddd;
text-align: center;
line-height: 30px;
font-size: 20px;
position: absolute;
cursor: pointer;
color: black;
}
#touch-controls {
position: fixed;
top: calc(2/3 * 100vh - 45px); /* Adjust this value for positioning */
left: 50%;
transform: translateX(-50%);
}
#up-arrow {
top: calc(50% - 45px);
left: 50%;
transform: translateX(-50%);
}
#down-arrow {
top: calc(50% + 15px); /* Adjust this value for positioning */
left: 50%;
transform: translateX(-50%);
}
#left-arrow {
top: calc(50% - 15px); /* Adjust this value for positioning */
left: calc(50% - 60px);
}
#right-arrow {
top: calc(50% - 15px); /* Adjust this value for positioning */
left: calc(50% + 30px);
}
</style>
</head>
<body>
<!-- Include Firebase SDK -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js"></script> <script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore-compat.js"></script>
<script src="./app.js"></script>
<div id="game-box"></div>
<div id="score-display"></div>
<div id="timer-display"></div>
<div id="scores-container" style="position: fixed; top: 10px; right: 10px;">
<h2>Scores</h2>
<ul id="scores-list"></ul>
</div>
<!-- Add this container for red boxes -->
<div id="red-boxes-container"></div>
<!-- Include any other scripts that use functions from app.js -->
<script>
// Ensure that the restartGame function is called after app.js is loaded
function playAgain() {
restartGame();
}
</script>
<div id="touch-controls">
<div id="up-arrow" class="arrow">▲</div>
<div id="down-arrow" class="arrow">▼</div>
<div id="left-arrow" class="arrow">◄</div>
<div id="right-arrow" class="arrow">►</div>
</div>
</body>
</html>