-
Notifications
You must be signed in to change notification settings - Fork 1
/
3.html
53 lines (45 loc) · 1.72 KB
/
3.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<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/helpers/animation.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(3)">
<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>
</body>
</html>