-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
166 lines (152 loc) · 5.84 KB
/
index.html
File metadata and controls
166 lines (152 loc) · 5.84 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<!-- Primary Meta Tags -->
<title>Gesture Lab - Interactive Hand Tracking Experiments</title>
<meta
name="description"
content="Control 3D worlds with your hands. Gesture Lab offers 4 free browser-based experiments: Iron Man Workshop, Cosmic Slash, Galaxy, and Foggy Mirror. No download required."
/>
<meta name="author" content="Logan (@quiet_node)" />
<meta name="creator" content="Logan" />
<meta
name="keywords"
content="hand tracking, gesture control, MediaPipe, Three.js, browser game, interactive art, motion control, web experiment"
/>
<meta name="theme-color" content="#0a0a0a" />
<!-- Canonical URL -->
<link rel="canonical" href="https://gesturelab.icu/" />
<!-- Favicon: SVG for modern browsers with dark mode, fallbacks for legacy -->
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon.ico" sizes="32x32" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gesturelab.icu/" />
<meta property="og:site_name" content="Gesture Lab" />
<meta property="og:title" content="Gesture Lab - Interactive Hand Tracking Experiments" />
<meta
property="og:description"
content="Control 3D worlds with your hands. 4 free browser-based experiments: Iron Man Workshop, Cosmic Slash, Galaxy, and Foggy Mirror."
/>
<meta property="og:image" content="https://gesturelab.icu/thumbnail.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://gesturelab.icu/" />
<meta name="twitter:site" content="@quiet_node" />
<meta name="twitter:creator" content="@quiet_node" />
<meta name="twitter:title" content="Gesture Lab - Interactive Hand Tracking Experiments" />
<meta
name="twitter:description"
content="Control 3D worlds with your hands. 4 free browser-based experiments: Iron Man Workshop, Cosmic Slash, Galaxy, and Foggy Mirror."
/>
<meta name="twitter:image" content="https://gesturelab.icu/thumbnail.png" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Gesture Lab",
"description": "Interactive movement tracking experiments in your browser. Control 3D worlds with hand gestures using Iron Man Workshop, Cosmic Slash, Galaxy, and Foggy Mirror modes.",
"url": "https://gesturelab.icu",
"applicationCategory": "Entertainment",
"operatingSystem": "Any (Web Browser)",
"browserRequirements": "Requires a modern browser with camera access (Chrome, Firefox, Edge, Safari)",
"author": {
"@type": "Person",
"name": "Logan",
"url": "https://x.com/quiet_node"
},
"creator": {
"@type": "Person",
"name": "Logan",
"url": "https://x.com/quiet_node"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"screenshot": "https://gesturelab.icu/thumbnail.png",
"featureList": [
"Iron Man Workshop - Inspect and assemble Iron Man armor in a holographic environment",
"Cosmic Slash - Slice through cosmic objects with lightsaber hands",
"Interactive Galaxy - Manipulate particles with hand gestures",
"Foggy Mirror - Clear mist by waving hands"
],
"softwareVersion": "1.0",
"inLanguage": "en",
"isAccessibleForFree": true,
"license": "https://opensource.org/licenses/MIT"
}
</script>
<!-- Preconnect to CDN for faster loading -->
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin />
<link rel="preconnect" href="https://storage.googleapis.com" crossorigin />
<style>
/* Critical CSS for initial load */
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #0a0a0a;
}
#app {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
}
.initial-loading {
text-align: center;
}
.initial-loading h1 {
font-size: 24px;
font-weight: 300;
letter-spacing: 2px;
margin-bottom: 20px;
background: linear-gradient(135deg, #ffa575 0%, #311599 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.spinner {
width: 40px;
height: 40px;
border: 3px solid rgba(255, 255, 255, 0.1);
border-top-color: #ffa575;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app">
<!-- Initial loading state (replaced by JS) -->
<div class="initial-loading">
<h1>✦ Interactive Galaxy ✦</h1>
<div class="spinner"></div>
<p style="margin-top: 20px; opacity: 0.6; font-size: 14px">Loading...</p>
</div>
</div>
<!-- Main application script -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>