-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.06 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.06 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Triangular 2048</title>
<link href="style/main.css" rel="stylesheet" type="text/css">
<script src="js/helpers/3d.js"></script>
<script src="js/helpers/misc.js"></script>
<script src="js/logics/cell.js"></script>
<script src="js/logics/grid.js"></script>
<script src="js/logics/events.js"></script>
<script src="js/logics/tile.js"></script>
<script src="js/logics/game.js"></script>
<script src="js/controllers/keyboard_controller.js"></script>
<script src="js/controllers/touch_controller.js"></script>
<script src="js/controllers/reset.js"></script>
<script src="js/views/2d_components.js"></script>
<script src="js/views/animation.js"></script>
<script src="js/views/canvas_view.js"></script>
<script src="js/views/scoreboard.js"></script>
<script src="js/storage/status_log.js"></script>
<script src="js/storage/local_storage_manager.js"></script>
<script src="js/have_fun.js"></script>
</head>
<body onload="haveFun(4)">
<div id="Triangular2048MainDiv">
<div class="heading">
<h1 class="title">T2048</h1>
<div class="scoreboard">
<div class="score"></div>
<div class="highscore"></div>
</div>
</div>
<div class="above-game">
<p class="game-intro">Join the numbers and get to the <strong>2048 tile!</strong></p>
<a class="restart-button">New Game</a>
</div>
<div class="view-container">
<canvas class="canvas_view" width="500" height="500"></canvas>
</div>
<div class="help">(controls: drag&drop, touch or keys: WEASDF)</div>
<div class="game-modes">
<a href="3.html" class="mode-link">Micro</a>
<a href="index.html" class="mode-link active">Classic</a>
<a href="5.html" class="mode-link">Titan</a>
</div>
</div>
<script data-goatcounter="https://halaei.goatcounter.com/count" async src="https://gc.zgo.at/count.js"></script>
</body>
</html>