-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (98 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./dist/main.css" />
<link rel="icon" href="./src/images/favicon.png" />
<script type='text/javascript' src="./dist/main.js" charset='utf-8' defer></script>
<script src="https://kit.fontawesome.com/a5666e50f9.js" crossorigin="anonymous"></script>
<title>Lumines</title>
<meta property="og:title" content="Lumines" />
<meta property="og:image" content="./src/images/LuminesSS.png" />
<meta property="og:description" content="Build and destroy 2x2 blocks as fast as you can!" />
<meta property="og:url" content="https://jonathan-calixto.github.io/lumines-clone/" />
</head>
<body class='background'>
<div class='main'>
<div class='title-center-div'>
<div class='title-div'>
<h1>LUMINES</h1>
</div>
</div>
<div class='game-screen'>
<div>
<canvas
id='next-piece-id'
class='next-piece-class'
width="200"
height="500"
>Something broke and I'm telling on you... MOM!!!</canvas>
</div>
<div>
<canvas
id="game-board-id"
class='game-board-class'
width="800"
height="500"
>If you are seeing this, fix it...</canvas>
</div>
<div class='info-div'>
<p>Level
<br/>
<span>1</span>
</p>
<p>Time
<br/>
<span>0:00</span>
</p>
<p>Score
<br/>
<span>0</span>
</p>
<p>High Score
<br/>
<span>0</span>
</p>
<p>Deleted
<br/>
<span>0</span>
</p>
<button id="start-lumines">Start</button>
<button id="reset-lumines">Reset</button>
</div>
</div>
</div>
<div class='instructions'>
<ul>
<li>
<p>Score points by rotating and aligning 2x2 blocks of varying colors to create 2x2 blocks of the same color. Earn points as the Time Line deletes them!</p>
</li>
<li>
<p>Earn bonus points by chaining multiple 2x2's!</p>
</li>
<li>
<p>Move blocks to the right using the D key or the <i class="fas fa-arrow-circle-right"></i> arrow key.</p>
</li>
<li>
<p>Move blocks to the left using the A key or the <i class="fas fa-arrow-circle-left"></i> arrow key.</p>
</li>
<li>
<p>Move blocks to down using the S key or the <i class="fas fa-arrow-circle-down"></i> arrow key.</p>
</li>
<li>
<p>Rotate blocks <i class="fas fa-sync-alt"></i> clockwise using the E key</p>
</li>
</ul>
</div>
<footer>
<div class='footer-class'>
<p><a href="https://www.linkedin.com/in/calixtojonathan/">LinkedIn</a></p>
<p><a href="https://github.com/jonathan-calixto">Github</a></p>
<p><a href="https://angel.co/u/jonathan-calixto">AngelList</a></p>
<p><a href="https://jonathan-calixto.github.io/">Portfolio</a></p>
</div>
</footer>
</body>
</html>