-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
319 lines (277 loc) · 8.69 KB
/
Copy pathindex.html
File metadata and controls
319 lines (277 loc) · 8.69 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
---
layout: default
---
<div class="home-content">
<!-- 轮播图区域 -->
<div class="carousel-section">
<div class="carousel-container">
<div class="carousel">
{% for photo in site.data.photo.photos %}
<div class="carousel-item {% if forloop.first %}active{% endif %}">
<img src="{{ photo.image }}" alt="{{ photo.description }}" loading="lazy">
<div class="carousel-caption">{{ photo.description }}</div>
</div>
{% endfor %}
</div>
<button class="carousel-prev">‹</button>
<button class="carousel-next">›</button>
</div>
<!-- 将指示器移到图片外部 -->
<div class="carousel-indicators">
{% for photo in site.data.photo.photos %}
<button class="indicator {% if forloop.first %}active{% endif %}" data-slide-to="{{ forloop.index0 }}"></button>
{% endfor %}
</div>
</div>
<!-- Laboratory Introduction Section -->
<div class="intro-section">
<div class="welcome-message">
<h1>Welcome</h1>
<p>Welcome to the Embodied Perception and Planning Group (EPP), part of the Visual Information Process and Learning Group (VIPL) under the Key Laboratory of Intelligent Information Processing at the Institute of Computing Technology (ICT), Chinese Academy of Sciences (CAS). Our laboratory is led by Prof. Meina Kan, Shiguang Shan, Xilin Chen and is dedicated to cutting-edge research in the field of embodied intelligence.</p>
</div>
<div class="lab-introduction">
<h1>Introduction</h1>
<p>The Embodied Perception and Planning Group focuses on researching how intelligent agents perceive, understand, and plan actions through interaction with the environment. Our research spans multiple fields including computer vision, robotics, reinforcement learning, and more, aiming to develop intelligent systems capable of adapting to complex environments. The laboratory adheres to open and innovative research principles, providing an excellent research environment for graduate students and researchers.</p>
</div>
<div class="research-focus">
<h1>Research Directions</h1>
<p>Our main research directions include: embodied perception, multimodal learning, robot autonomous navigation, human-computer interaction, and more. By combining advanced technologies such as deep learning and reinforcement learning, we are committed to solving perception, cognition, and decision-making problems for intelligent agents in the real world.</p>
<p class="research-platform-intro">Our research is built around embodied platforms such as guide-assistance systems for the visually impaired, quadruped robots, and humanoid robots, spanning both academic research and system construction.</p>
<div class="platform-gallery" aria-label="Embodied platforms">
<figure class="platform-item">
<img src="/images/intro_img/导盲系统.png" alt="Guide-assistance system for the visually impaired" loading="lazy">
<figcaption>Guide-Assistance System</figcaption>
</figure>
<figure class="platform-item">
<img src="/images/intro_img/机器狗1.jpg" alt="Quadruped robot platform" loading="lazy">
<figcaption>Quadruped Robot Platform</figcaption>
</figure>
<figure class="platform-item">
<img src="/images/intro_img/机器狗2.png" alt="Quadruped robot system" loading="lazy">
<figcaption>Quadruped Robot System</figcaption>
</figure>
<figure class="platform-item">
<img src="/images/intro_img/人形机器人.png" alt="Humanoid robot platform" loading="lazy">
<figcaption>Humanoid Robot Platform</figcaption>
</figure>
</div>
</div>
</div>
</div>
<style>
.home-content {
margin-top: 20px;
}
.carousel-section {
position: relative;
width: 100%;
max-width: 42rem;
margin: 0.0rem auto;
padding-bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.carousel-container {
position: relative;
max-width: 42rem;
width: 100%;
height: 420px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.carousel {
display: flex;
width: 100%;
height: 100%;
transition: transform 0.5s ease;
}
.carousel-item {
flex: 0 0 100%;
display: none;
position: relative;
}
.carousel-item.active {
display: block;
}
.carousel-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.carousel-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.5);
color: white;
padding: 8px 0;
text-align: center;
font-size: 12px;
}
.carousel-prev, .carousel-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: white;
border: none;
padding: 8px 12px;
cursor: pointer;
font-size: 16px;
line-height: 1;
}
.carousel-prev {
left: 10px;
}
.carousel-next {
right: 10px;
}
/* 指示器移到图片外部,设置为小圆圈 */
.carousel-indicators {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 15px;
width: 100%;
max-width: 42rem;
}
.indicator {
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid #999;
background: transparent;
cursor: pointer;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.indicator.active {
background: #666;
border-color: #666;
}
@keyframes fadeIn {
from { opacity: 0.8; }
to { opacity: 1; }
}
.intro-section {
text-align: left;
max-width: 42rem;
margin: 0 auto;
font-size: 1.2rem;
line-height: 1.6;
color: #000000;
}
.welcome-message, .lab-introduction, .research-focus {
/* margin-bottom: 0rem; */
text-align: left;
}
.research-platform-intro {
margin-bottom: 0.9rem;
}
.platform-gallery {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
margin: 1rem 0 1.1rem;
}
.platform-item {
margin: 0;
overflow: hidden;
border: 1px solid #dddddd;
border-radius: 6px;
background: #fafafa;
}
.platform-item img {
display: block;
width: 100%;
height: 260px;
object-fit: contain;
background: #f5f5f5;
}
.platform-item figcaption {
padding: 8px 10px;
border-top: 1px solid #dddddd;
color: #333333;
font-size: 0.9rem;
line-height: 1.35;
text-align: center;
}
/* .welcome-message p, .lab-introduction p, .research-focus p {
font-size: 0.875rem;
line-height: 1.6;
color: #333;
margin: 0;
text-align: left;
} */
.section-title {
font-size: 1.2rem;
font-weight: 600;
line-height: 1.6;
margin: 0 0 1rem 0;
color: #000000;
letter-spacing: 0.02em;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: #3366cc;
border-radius: 2px;
}
@media (max-width: 768px) {
.carousel-section {
height: auto;
}
.research-highlights {
grid-template-columns: 1fr;
}
.platform-gallery {
grid-template-columns: 1fr;
}
.platform-item img {
height: 260px;
}
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const carousel = document.querySelector('.carousel');
const items = document.querySelectorAll('.carousel-item');
const indicators = document.querySelectorAll('.indicator');
const prevBtn = document.querySelector('.carousel-prev');
const nextBtn = document.querySelector('.carousel-next');
let currentIndex = 0;
function showSlide(index) {
items.forEach(item => item.classList.remove('active'));
indicators.forEach(indicator => indicator.classList.remove('active'));
items[index].classList.add('active');
indicators[index].classList.add('active');
currentIndex = index;
}
function nextSlide() {
let nextIndex = (currentIndex + 1) % items.length;
showSlide(nextIndex);
}
function prevSlide() {
let prevIndex = (currentIndex - 1 + items.length) % items.length;
showSlide(prevIndex);
}
nextBtn.addEventListener('click', nextSlide);
prevBtn.addEventListener('click', prevSlide);
indicators.forEach((indicator, index) => {
indicator.addEventListener('click', () => showSlide(index));
});
// 自动轮播
setInterval(nextSlide, 5000);
});
</script>