-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
258 lines (224 loc) · 7.68 KB
/
index.html
File metadata and controls
258 lines (224 loc) · 7.68 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PanelDisplayTools - Web Tools</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0f1419;
--surface: #1a1f26;
--border: #2d3640;
--text: #e6edf3;
--text-dim: #8b949e;
--accent: #00e676;
--hover: #00c853;
--card-hover: #252b33;
}
body {
font-family: 'IBM Plex Mono', monospace;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.container {
max-width: 1400px;
width: 100%;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 2px solid var(--border);
}
h1 {
font-family: 'JetBrains Mono', monospace;
font-size: 3rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.5rem;
}
.subtitle {
color: var(--text-dim);
font-size: 1rem;
margin-top: 0.75rem;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.tool-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
padding: 2rem;
text-decoration: none;
color: var(--text);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.tool-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--accent);
transform: scaleY(0);
transition: transform 0.3s ease;
}
.tool-card:hover {
background: var(--card-hover);
border-color: var(--accent);
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 230, 118, 0.1);
}
.tool-card:hover::before {
transform: scaleY(1);
}
.tool-card h2 {
font-family: 'JetBrains Mono', monospace;
font-size: 1.4rem;
color: var(--accent);
margin-bottom: 0.75rem;
font-weight: 700;
}
.tool-card p {
color: var(--text-dim);
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 1rem;
}
.tool-card .status {
display: inline-block;
padding: 0.3rem 0.8rem;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.status.ready {
background: rgba(0, 230, 118, 0.15);
color: var(--accent);
border: 1px solid var(--accent);
}
.status.coming-soon {
background: rgba(139, 148, 158, 0.15);
color: var(--text-dim);
border: 1px solid var(--border);
}
.status.in-dev {
background: rgba(255, 152, 0, 0.15);
color: #ff9800;
border: 1px solid #ff9800;
}
.tool-card.disabled {
opacity: 0.6;
cursor: not-allowed;
}
.tool-card.disabled:hover {
transform: none;
background: var(--surface);
border-color: var(--border);
box-shadow: none;
}
footer {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--border);
color: var(--text-dim);
font-size: 0.85rem;
}
footer a {
color: var(--accent);
text-decoration: none;
transition: color 0.2s;
}
footer a:hover {
color: var(--hover);
}
.info-box {
background: rgba(139, 148, 158, 0.08);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1rem 1.25rem;
margin-top: 2rem;
font-size: 0.85rem;
color: var(--text-dim);
}
.info-box strong {
color: var(--text);
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.tools-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>PanelDisplayTools</h1>
<p class="subtitle">Web-based tools for LED panel arena design and pattern creation</p>
</header>
<div class="tools-grid">
<a href="pattern_editor.html" class="tool-card">
<h2>Pattern Editor</h2>
<p>Create, edit, and combine full-arena patterns. Generate gratings, starfields, and more with 2D/3D preview.</p>
<span class="status in-dev">In Development</span>
</a>
<a href="arena_editor.html" class="tool-card">
<h2>Arena Layout</h2>
<p>Configure arena geometry from standard configs or create custom layouts. 2D visualization with PDF export.</p>
<span class="status ready">Ready</span>
</a>
<a href="arena_3d_viewer.html" class="tool-card">
<h2>Arena 3D View</h2>
<p>Interactive 3D visualization of cylindrical arenas. Preview test patterns and explore angular resolution.</p>
<span class="status ready">Ready</span>
</a>
<a href="icon_generator.html" class="tool-card">
<h2>Pattern Icon Generator</h2>
<p>Generate top-down cylindrical view icons from arena patterns. Supports single-frame and motion blur rendering.</p>
<span class="status in-dev">In Development</span>
</a>
<a href="g6_panel_editor.html" class="tool-card">
<h2>G6 Panel Patterns</h2>
<p>Create and preview 20×20 pixel patterns for individual G6 panels. Supports GS2 and GS16 modes with real-time preview.</p>
<span class="status ready">Ready</span>
</a>
<a href="experiment_designer.html" class="tool-card">
<h2>Experiment Designer</h2>
<p>Design experiment protocols with stimulus sequences and trial parameters. YAML export for MATLAB execution.</p>
<span class="status in-dev">In Development</span>
</a>
</div>
<div class="info-box">
<strong>Panel Generations:</strong> G4.1 and G6 are actively tested. G3 and G4 configurations are included for comparison and backward compatibility.
</div>
<footer>
<p>
<a href="https://github.com/reiserlab/webDisplayTools" target="_blank">GitHub</a> |
<a href="https://github.com/reiserlab" target="_blank">Reiser Lab</a>
</p>
</footer>
</div>
</body>
</html>