-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.html
More file actions
76 lines (72 loc) · 2.71 KB
/
experiments.html
File metadata and controls
76 lines (72 loc) · 2.71 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
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Interactive browser game experiments built in JavaScript by Dr. Roberto Gonzalez Sanchez."
/>
<title>Experiments Lab | Dr. Roberto Gonzalez Sanchez</title>
<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=Fraunces:opsz,wght@9..144,500;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="experiments.css" />
</head>
<body>
<div class="page">
<header class="site-header">
<a class="brand" href="index.html">RGS</a>
<nav class="nav">
<a href="#games">Games</a>
</nav>
</header>
<main>
<section class="hero">
<p class="eyebrow">Interactive Research Playground</p>
<h1>JavaScript Game Experiments</h1>
<p>
A browser lab for small, fast, testable game concepts. Each game is modular, so new
experiments can be added without changing the whole page.
</p>
<div class="hero-actions">
<a class="btn primary" href="#games">Play Experiments</a>
<a class="btn ghost" href="index.html">Back to Main Site</a>
</div>
</section>
<section id="games">
<div class="section-title">
<h2>Playable Games</h2>
<p>First experiments ready to play directly in your browser.</p>
</div>
<div class="game-layout">
<aside class="game-list" id="game-list"></aside>
<section class="play-surface">
<div id="game-meta"></div>
<div id="game-mount"></div>
</section>
</div>
</section>
</main>
<footer class="site-footer">
<p>Experiments lab for rapid browser prototypes in JavaScript.</p>
</footer>
</div>
<script>
window.ExperimentsGames = [];
</script>
<script src="vendor/planck.min.js"></script>
<script src="games/brick-breaker.js"></script>
<script src="games/packet-defender.js"></script>
<script src="games/target-rush.js"></script>
<script src="games/cipher-memory.js"></script>
<script src="games/pixel-platformer-levels.js"></script>
<script src="games/pixel-platformer.js"></script>
<script src="games/neon-rift-rally.js"></script>
<script src="games/sketch-rig-challenge.js"></script>
<script src="experiments.js"></script>
</body>
</html>