-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
223 lines (197 loc) · 6.17 KB
/
index.html
File metadata and controls
223 lines (197 loc) · 6.17 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>InfiniteSenseLab</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
background:linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
color:#e2e8f0;
min-height:100vh;
}
.bg-grid{
position:fixed;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size:60px 60px;
pointer-events:none;
z-index:0;
}
.container{
position:relative;
z-index:1;
max-width:900px;
margin:0 auto;
padding:80px 24px;
}
.brand{
text-align:center;
margin-bottom:64px;
}
.brand-icon{
width:72px;
height:72px;
margin:0 auto 20px;
background:linear-gradient(135deg, #6366f1, #8b5cf6);
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
box-shadow:0 8px 40px rgba(99,102,241,0.35);
}
.brand h1{
font-size:42px;
font-weight:800;
letter-spacing:-0.5px;
background:linear-gradient(135deg, #e2e8f0, #a5b4fc);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}
.brand p{
margin-top:12px;
font-size:16px;
color:#94a3b8;
letter-spacing:0.5px;
}
.cards{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
}
.card{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
padding:36px;
text-decoration:none;
color:inherit;
backdrop-filter:blur(10px);
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}
.card::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
opacity:0;
transition:opacity 0.3s;
}
.card:hover{
transform:translateY(-6px);
border-color:rgba(99,102,241,0.4);
box-shadow:0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.2);
}
.card:hover::before{
opacity:1;
}
.card-icon{
font-size:40px;
margin-bottom:16px;
position:relative;
z-index:1;
}
.card-title{
font-size:22px;
font-weight:700;
margin-bottom:8px;
position:relative;
z-index:1;
color:#f1f5f9;
}
.card-desc{
font-size:14px;
color:#94a3b8;
line-height:1.6;
position:relative;
z-index:1;
}
.card-tag{
display:inline-block;
margin-top:16px;
padding:4px 10px;
border-radius:6px;
font-size:11px;
font-weight:600;
background:rgba(99,102,241,0.2);
color:#a5b4fc;
position:relative;
z-index:1;
}
.footer{
text-align:center;
margin-top:64px;
padding-top:32px;
border-top:1px solid rgba(255,255,255,0.06);
}
.footer a{
color:#818cf8;
text-decoration:none;
font-weight:600;
}
.footer a:hover{
text-decoration:underline;
}
.footer span{
color:#64748b;
font-size:14px;
}
@media(max-width:640px){
.cards{
grid-template-columns:1fr;
}
.brand h1{
font-size:32px;
}
}
</style>
</head>
<body>
<div class="bg-grid"></div>
<div class="container">
<div class="brand">
<div class="brand-icon">⚡</div>
<h1>InfiniteSenseLab</h1>
<p>嵌入式调试与配置工具集</p>
</div>
<div class="cards">
<a href="SimpleMotor.html" class="card">
<div class="card-icon">⚙️</div>
<div class="card-title">SimpleMotor Studio</div>
<div class="card-desc">电机控制与调试工具,支持速度/PWM双模式,PID参数实时配置</div>
<span class="card-tag">控制面板</span>
</a>
<a href="SimpleSensorSync.html" class="card">
<div class="card-icon">🔗</div>
<div class="card-title">SimpleSensorSync Studio</div>
<div class="card-desc">多传感器同步板配置工具,支持触发频率、脉宽与串口参数配置</div>
<span class="card-tag">配置工具</span>
</a>
</div>
<div class="footer">
<span>
<a href="https://github.com/InfiniteSenseLab" target="_blank">InfiniteSenseLab</a>
·
<a href="https://github.com/InfiniteSenseLab/SimpleMotor" target="_blank">SimpleMotor</a>
·
<a href="https://github.com/InfiniteSenseLab/SimpleSensorSync" target="_blank">SimpleSensorSync</a>
</span>
<p style="margin-top:16px;font-size:12px;color:#64748b;">
推荐使用 Google Chrome 浏览器 · Firefox 不支持串口 API
</p>
</div>
</div>
</body>
</html>