-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (104 loc) · 3.53 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
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Synaptic Harmonics - Meat-based energy cell optimizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css"/>
<link
rel="shortcut icon"
type="image/x-icon"
/>
</head>
<body>
<div class="bck"></div>
<canvas id="c2d" width="1920" height="1080"></canvas>
<div id="plane" class="hide">
<svg viewBox="0 0 26.5 26.5" xmlns="http://www.w3.org/2000/svg">
<path id="pl1" fill="#e7d9ff" d="m16.925 11.839-6.534.652.77 1.08z"/>
<path id="pl3" fill="#8539ff" d="m11.282 15.234-.122-1.662 5.765-1.733z"/>
<path id="pl2" fill="#e7d9ff" d="m16.925 11.839-5.235 2.36 1.455 1.77z"/>
</svg>
</div>
<div id="lobby" class="hide">
<h1>
Levels
</h1>
<ul id="list"></ul>
</div>
<div id="menu">
<h1>
<span>Synaptic Harmonics</span>
</h1>
<h2>Meat-based energy cell optimizer</h2>
<ul>
<li>
<button id="start">Start</button>
</li>
<li>
<button id="contGame">Levels</button>
</li>
</ul>
</div>
<div id="intro" class="hide">
<div class="text">
<p>
Your meat-brained species excels at <b>pattern recognition</b>,
albeit through instinct rather than understanding. This experiment
aims to determine if human intuition can <b>optimize</b> our
multi-dimensional quintessence-fused energy cells effectively.
</p>
<p>
<b>Do not concern yourself</b> with the intricacies of our technology;
your fleshy brain could not begin to comprehend.
Focus on <b>instinctively</b> finding the most <b>harmonious</b>
parameter configurations.
</p>
</div>
<ul>
<li>
<button id="play">Uh, OK...</button>
</li>
</ul>
</div>
<div id="result" class="hide">
<h1 id="resultTitle"></h1>
<p id="resultText"></p>
<ul>
<li>
<button id="nextLevel"><span>Continue</span><span>↠</span></button>
</li>
<li>
<button id="retry"><span>Retry</span><span>↺</span></button>
</li>
<li>
<button id="thanks">Return</button>
</li>
</ul>
</div>
<div id="controls">
<div id="switches">
<button id="switch1" type="checkbox">≡</button>
<button id="switch2" type="checkbox">≡</button>
</div>
<input id="range" type="range" min="0" max="100">
<input id="range2" class="hide" type="range" min="0" max="100">
<div id="circleRangeElement" class="cre hide">
<div id="ring">
<div id="thumb"></div>
</div>
</div>
<div id="circleRangeElement2" class="cre hide">
<div id="ring">
<div id="thumb"></div>
</div>
</div>
<button id="submit">OK</button>
</div>
<div id="lights"></div>
<div id="fps" class="hide"></div>
<div id="overlay" class="hide"></div>
<button id="closeBtn" class="hide">×</button>
<script type="module" src="/src/index.ts"></script>
</body>
</html>