-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlist.html
More file actions
executable file
·406 lines (392 loc) · 15.6 KB
/
Copy pathlist.html
File metadata and controls
executable file
·406 lines (392 loc) · 15.6 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>项目列表 | 虚谷计划</title>
<meta name="description" content="虚谷计划是一个包含硬件和软件的开源教育项目,由一线教师联合高校、创客空间和科技企业共同发起,致力于为中国青少年提供完整、开放、可复制、可实践的人工智能与科技教育解决方案。">
<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=Noto+Sans+SC:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<style>
.project-modal {
position: fixed;
inset: 0;
z-index: 2000;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(4px);
opacity: 0;
transition: opacity 0.25s ease;
}
.project-modal.active {
display: flex;
opacity: 1;
}
.project-modal__panel {
width: 100%;
max-width: 520px;
background: #fff;
border-radius: 20px;
box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
transform: translateY(16px);
transition: transform 0.25s ease;
overflow: hidden;
}
.project-modal.active .project-modal__panel {
transform: translateY(0);
}
.project-modal__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 28px;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
color: #fff;
}
.project-modal__brand {
display: flex;
align-items: center;
gap: 16px;
}
.project-modal__icon {
width: 56px;
height: 56px;
object-fit: contain;
background: #fff;
border-radius: 14px;
padding: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.project-modal__header h3 {
font-size: 1.25rem;
font-weight: 700;
margin: 0;
}
.project-modal__close {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
color: #fff;
font-size: 1.5rem;
line-height: 1;
cursor: pointer;
transition: background 0.2s ease;
}
.project-modal__close:hover {
background: rgba(255, 255, 255, 0.35);
}
.project-modal__body {
padding: 28px;
}
.project-modal__row {
margin-bottom: 20px;
}
.project-modal__row:last-child {
margin-bottom: 0;
}
.project-modal__label {
display: block;
font-size: 0.8125rem;
font-weight: 600;
color: var(--color-text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 6px;
}
.project-modal__value {
font-size: 1rem;
color: var(--color-text);
line-height: 1.6;
}
.project-modal__value a {
color: var(--color-primary);
text-decoration: underline;
text-underline-offset: 3px;
word-break: break-all;
}
.project-modal__value a:hover {
color: var(--color-primary-dark);
}
.project-modal__empty {
color: var(--color-text-muted);
font-style: italic;
}
.list-table th:nth-child(3),
.list-table td:nth-child(3),
.list-table th:nth-child(4),
.list-table td:nth-child(4) {
white-space: nowrap;
min-width: 90px;
}
.list-table th:nth-child(3),
.list-table td:nth-child(3) {
min-width: 100px;
}
.list-table th:nth-child(4),
.list-table td:nth-child(4) {
min-width: 110px;
}
@media (max-width: 640px) {
.project-modal__header,
.project-modal__body {
padding: 20px 24px;
}
.project-modal__icon {
width: 48px;
height: 48px;
border-radius: 12px;
}
.project-modal__brand {
gap: 12px;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<header class="site-header scrolled" id="header">
<div class="container nav-container">
<a class="logo" href="/">
<span class="logo-mark">虚</span>
<span class="logo-text">虚谷计划</span>
</a>
<nav class="main-nav">
<a href="about.html">关于计划</a>
<a href="maker.html">创客教育</a>
<a href="ai.html">人工智能</a>
<a href="ecosystem.html">生态伙伴</a>
<a href="list.html" class="btn btn-sm btn-outline">项目列表</a>
</nav>
<button class="menu-toggle" aria-label="菜单" id="menuToggle">
<span></span><span></span><span></span>
</button>
</div>
</header>
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<a href="about.html">关于计划</a>
<a href="maker.html">创客教育</a>
<a href="ai.html">人工智能</a>
<a href="ecosystem.html">生态伙伴</a>
<a href="list.html">项目列表</a>
</div>
<!-- Page Header -->
<section class="page-header">
<div class="container">
<h1>项目列表</h1>
<p>虚谷计划最早从 2018 年发起,一开始以创客教育为核心方向,先后形成了虚谷号、掌控板、虚谷物联和乐造模块等项目。2022 年之后,虚谷计划团队逐步转向人工智能教育,一些新的项目持续加入,如 XEduPro、OpenHydra、QuickForm 和 QuickClass。</p>
</div>
</section>
<!-- List -->
<section class="section-list">
<div class="container">
<div class="list-table-wrap">
<table class="list-table">
<thead>
<tr>
<th>项目名称</th>
<th>项目简介</th>
<th>发起时间</th>
<th>状态</th>
<th>详情</th>
</tr>
</thead>
<tbody>
<tr>
<td>QuickClass</td>
<td>一个 AI 驱动的课堂教学辅助平台。</td>
<td>2026 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="QuickClass" data-image="images/quickclass.png" data-founder="管雪沨" data-repo="https://gitee.com/maoyouhui/quickclass-release/" data-repo-label="Gitee">详情</button></td>
</tr>
<tr>
<td>QuickForm</td>
<td>为 AI 大模型开发交互网页设计的数据服务,拥有 3 万多教师用户。</td>
<td>2025 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="QuickForm" data-image="images/quickform.jpg" data-founder="谢作如、方建文" data-homepage="https://quickform.cc/" data-repo="https://github.com/wstlab/quickform" data-repo-label="GitHub">详情</button></td>
</tr>
<tr>
<td>OpenHydra</td>
<td>为中小学设计的 AI 教学平台。</td>
<td>2024 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="OpenHydra" data-image="images/openhydra.png" data-founder="谢作如、钟柏昌" data-homepage="https://openhydra.net/" data-repo="https://github.com/openhydra/" data-repo-label="GitHub">详情</button></td>
</tr>
<tr>
<td>XEduPro</td>
<td>一套开箱即用的人工智能学习工具,是人工智能初学者必用学习工具。</td>
<td>2022 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="XEduPro" data-image="images/xedu-logo.svg" data-founder="谢作如、钟柏昌" data-homepage="https://xedupro.cn/" data-repo="https://github.com/XEduPro" data-repo-label="GitHub">详情</button></td>
</tr>
<tr>
<td>乐造模块</td>
<td>利用激光切割技术加工的木质结构件,为创客教育与 STEAM 提供低成本结构件方案。</td>
<td>2020 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="乐造模块" data-image="images/laserblock-logo.jpg" data-founder="专委会、雷宇科技" data-homepage="https://www.vvplan.cn/laserblock/">详情</button></td>
</tr>
<tr>
<td>虚谷物联</td>
<td>一套开箱即用物联网工具包,其 MQTT 服务器“SIoT”已成为中小学物联网教学的重要工具。</td>
<td>2019 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="虚谷物联" data-image="images/vvlink-logo.jpg" data-founder="专委会、DFRobot" data-homepage="https://www.vvplan.cn/vvlink/" data-repo="https://github.com/vvlink/SIoT" data-repo-label="GitHub">详情</button></td>
</tr>
<tr>
<td>虚谷号</td>
<td>一款能运行 Python 的开源硬件。</td>
<td>2018 年</td>
<td><span class="project-status status-stopped">已停止</span></td>
<td><button class="btn btn-primary btn-sm" data-project="虚谷号" data-image="images/vvboard-logo.jpg" data-founder="专委会、希科普" data-homepage="https://www.vvplan.cn/vvboard/" data-repo="https://github.com/vvlink/vvBoard-docs" data-repo-label="GitHub">详情</button></td>
</tr>
<tr>
<td>掌控板</td>
<td>一款集成常见电子模块的开源硬件,已成为国内中小学创客教育最常用的开源硬件之一。</td>
<td>2018 年</td>
<td><span class="project-status status-active">持续中</span></td>
<td><button class="btn btn-primary btn-sm" data-project="掌控板" data-image="images/handpy-logo.jpg" data-founder="专委会、盛思科技" data-homepage="https://www.vvplan.cn/handpy/" data-repo="https://github.com/labplus-cn/mPython/" data-repo-label="GitHub">详情</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Project Detail Modal -->
<div class="project-modal" id="projectModal" role="dialog" aria-modal="true" aria-labelledby="modalTitle">
<div class="project-modal__panel">
<div class="project-modal__header">
<div class="project-modal__brand">
<img id="modalImage" src="" alt="" class="project-modal__icon" hidden>
<h3 id="modalTitle">项目详情</h3>
</div>
<button class="project-modal__close" id="modalClose" aria-label="关闭">×</button>
</div>
<div class="project-modal__body">
<div class="project-modal__row">
<span class="project-modal__label">发起人(单位)</span>
<div class="project-modal__value" id="modalFounder">—</div>
</div>
<div class="project-modal__row">
<span class="project-modal__label">项目主页</span>
<div class="project-modal__value" id="modalHomepage">—</div>
</div>
<div class="project-modal__row">
<span class="project-modal__label">代码仓库</span>
<div class="project-modal__value" id="modalRepo">—</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a class="logo" href="/">
<span class="logo-mark">虚</span>
<span class="logo-text">虚谷计划</span>
</a>
<p>中国的开源教育计划,让人工智能与开源硬件点亮每一间课堂。</p>
</div>
<div class="footer-links">
<h4>热门项目</h4>
<a href="/handpy">掌控板</a>
<a href="/vvlink">虚谷物联</a>
<a href="https://quickform.cc/" target="_blank" rel="noopener">QuickForm</a>
<a href="https://xedupro.cn/" target="_blank" rel="noopener">XEduPro</a>
<a href="https://openhydra.net/" target="_blank" rel="noopener">OpenHydra</a>
</div>
<div class="footer-links">
<h4>导航</h4>
<a href="list.html">项目列表</a>
<a href="about.html">关于我们</a>
<a href="maker.html">创客教育</a>
<a href="ai.html">人工智能</a>
</div>
</div>
<div class="footer-bottom">
<p>© 虚谷计划组委会 2018 — 2026. 保留所有权利。</p>
</div>
</div>
</footer>
<script>
const menuToggle = document.getElementById('menuToggle');
const mobileMenu = document.getElementById('mobileMenu');
menuToggle.addEventListener('click', () => {
menuToggle.classList.toggle('active');
mobileMenu.classList.toggle('open');
});
mobileMenu.querySelectorAll('a').forEach(link => {
link.addEventListener('click', () => {
menuToggle.classList.remove('active');
mobileMenu.classList.remove('open');
});
});
const modal = document.getElementById('projectModal');
const modalTitle = document.getElementById('modalTitle');
const modalImage = document.getElementById('modalImage');
const modalFounder = document.getElementById('modalFounder');
const modalHomepage = document.getElementById('modalHomepage');
const modalRepo = document.getElementById('modalRepo');
const modalClose = document.getElementById('modalClose');
function linkHtml(url, label) {
if (!url || url === '—') {
return '<span class="project-modal__empty">暂无</span>';
}
const text = label || url;
return `<a href="${url}" target="_blank" rel="noopener">${text}</a>`;
}
function openModal(button) {
const project = button.dataset.project;
const image = button.dataset.image;
const founder = button.dataset.founder;
const homepage = button.dataset.homepage;
const repo = button.dataset.repo;
const repoLabel = button.dataset.repoLabel;
modalTitle.textContent = project ? `${project} 详情` : '项目详情';
if (image) {
modalImage.src = image;
modalImage.alt = project ? `${project} 图标` : '项目图标';
modalImage.hidden = false;
} else {
modalImage.hidden = true;
modalImage.src = '';
}
modalFounder.textContent = founder || '—';
modalHomepage.innerHTML = linkHtml(homepage, homepage);
modalRepo.innerHTML = linkHtml(repo, repoLabel || 'GitHub');
modal.classList.add('active');
document.body.style.overflow = 'hidden';
modalClose.focus();
}
function closeModal() {
modal.classList.remove('active');
document.body.style.overflow = '';
}
document.querySelectorAll('[data-project]').forEach(button => {
button.addEventListener('click', () => openModal(button));
});
modalClose.addEventListener('click', closeModal);
modal.addEventListener('click', (e) => {
if (e.target === modal) closeModal();
});
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape' && modal.classList.contains('active')) {
closeModal();
}
});
</script>
</body>
</html>