-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
46 lines (46 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Run and Jump RxJS</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" type="image/png" href="favicon.ico">
</head>
<body>
<div class="game-container">
<div class="row columns large-8 large-offset-2">
<canvas id="game"></canvas>
</div>
</div>
<div class="row">
<div class="columns text-center">
<h1>Run and Jump RxJS</h1>
</div>
</div>
<div class="row">
<div class="columns text-justify">
<p>Run and Jump game made with RxJS v6, ES6 and bundled with webpack. Press spacebar o tap on the screen to jump. The sprites are from Bonk's Revenge, a game released on Turbografx on 1991. Enjoy it!</p>
</div>
</div>
<div class="footer row">
<div class="columns text-center">
<div class="row">
<strong>Source</strong><br>
<a href="https://github.com/albert-gonzalez/run-and-jump-rxjs">Github</a>
</div>
<div class="libraries row">
<strong>Libraries</strong><br>
<a href="https://github.com/ReactiveX/rxjs">RxJS</a>
<a href="https://github.com/zurb/foundation-sites">Foundation Sites</a>
<a href="https://github.com/webpack/webpack">Webpack</a>
<a href="https://github.com/babel/babel">Babel</a>
</div>
<div class="row">
Created by <a href="https://github.com/albert-gonzalez">Albert González</a>
</div>
</div>
</div>
</body>
<script src="dist/game.bundle.js"></script>
</html>