-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (48 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
64 lines (48 loc) · 1.92 KB
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
<!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">
<title>TapTapbird</title>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
</head>
<body>
<div id="Title">
<img class="item1" src="bird6.png" width=51px height=36px/>
<h1 class="item2">TapTapBird</h1>
</div>
<h2 id="Title2">Select Difficulty</h2>
<div id="levelSelection">
<div class="levelBtn" onclick="levelSelection('peaceful')">Peaceful</div>
<div class="levelBtn" onclick="levelSelection('normal')">Normal</div>
<div class="levelBtn" onclick="levelSelection('hard')">Hard</div>
</div>
<div class="returnbtn">
<a href="index.html" id="Homebtn" style="display:none">Return home</a>
</div>
<br>
<div class="canvascenter">
<canvas id="board" style="display:none"></canvas>
</div>
<br>
<br>
<br>
<div class="infoAboutLevels" onclick="ShowInfo()" style="margin:auto">👉Info about levels</div>
<br>
<br>
<div class="infoAboutLeader" onclick="loadLeaderboard()" style="margin:auto">Show Leaderboards</div>
<div id="leaderboard">
<h1>Loading(Might take 20s for the first time.)</h1>
</div>
<div id="infoLevels">
<p>●<b>Peaceful</b>: Speed of the bird doesn’t increase. You can play as long as you want peacefully.</p>
<p>●<b>Normal</b>:Speed of the bird increases after 10 points, 20 points and reaches max speed at 30 points. Might get challenging.</p>
<p>●<b>Hard</b>:Speed already starts faster then normal, increases after 10,20 and 30 points. Almost impossible to play at max speed. Only play if you have insane reflexes.</p>
</div>
</body>
</html>