-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
576 lines (521 loc) · 27.3 KB
/
index.html
File metadata and controls
576 lines (521 loc) · 27.3 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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CBIMS research group</title>
<link rel="icon" type="image/svg+xml" href="images/logo-cbm.svg">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white text-gray-800">
<!-- Hero Section with Header and About -->
<section id="about" class="relative bg-cover bg-center bg-no-repeat h-96" style="background-image: url('images/home-heroimage.jpg');">
<!-- Overlay for better text readability -->
<div class="absolute inset-0 bg-black bg-opacity-40 z-0"></div>
<!-- Header -->
<header class="relative z-20">
<div class="max-w-5xl mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-3">
<img src="images/logo-cbm.svg" alt="CBIMS Logo" class="h-8 w-8">
<h1 id="siteTitle" class="text-2xl font-bold text-white">CBIMS研究组</h1>
</div>
<nav class="space-x-6 flex items-center">
<a href="#about" id="nav-about" class="text-white hover:text-blue-300">关于我们</a>
<a href="#news" id="nav-news" class="text-white hover:text-blue-300">新闻</a>
<a href="#awards" id="nav-awards" class="text-white hover:text-blue-300">获奖</a>
<a href="#publications" id="nav-publications" class="text-white hover:text-blue-300">论文发表</a>
<a href="#visitors" id="nav-visitors" class="text-white hover:text-blue-300">访客地图</a>
<!-- Language Dropdown -->
<div class="relative">
<button id="languageBtn" class="text-white hover:text-blue-300 flex items-center space-x-1">
<span id="languageText">语言</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</button>
<div id="languageDropdown" class="absolute right-0 mt-2 w-24 bg-white rounded-md shadow-lg hidden z-50">
<div class="py-1">
<button class="language-option block w-full text-left px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" data-lang="zh">中文</button>
<button class="language-option block w-full text-left px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" data-lang="en">English</button>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- About Us -->
<div class="relative z-10 max-w-5xl mx-auto px-6 py-12 pb-20 flex flex-col justify-center flex-1">
<h2 id="aboutTitle" class="text-3xl font-bold mb-6 text-white">关于我们🌍</h2>
<p id="aboutText" class="text-lg text-white leading-relaxed max-w-3xl">
我们是清华大学软件学院CBIMS研究组。我们的研究专注于建筑信息模型(BIM)、3D计算机视觉和人工智能(AI)。我们致力于连接建筑、工程和建设(AEC)行业与人工智能之间的桥梁。
</p>
</div>
</section>
<!-- News -->
<section id="news" class="py-16" style="background-color: #eef9ff;">
<div class="max-w-5xl mx-auto px-6">
<h2 id="newsTitle" class="text-2xl font-bold mb-8">新闻✨</h2>
<!-- Scrollable Container -->
<div class="relative">
<!-- Left Arrow Button -->
<button id="leftBtn" class="absolute left-0 top-1/2 transform -translate-y-1/2 z-10 bg-white shadow-lg rounded-full w-10 h-10 flex items-center justify-center hover:bg-gray-50 transition-colors">
<svg class="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path>
</svg>
</button>
<!-- Right Arrow Button -->
<button id="rightBtn" class="absolute right-0 top-1/2 transform -translate-y-1/2 z-10 bg-white shadow-lg rounded-full w-10 h-10 flex items-center justify-center hover:bg-gray-50 transition-colors">
<svg class="w-5 h-5 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
</button>
<!-- Cards Container -->
<div class="overflow-hidden mx-12">
<div id="cardsContainer" class="flex space-x-6 transition-transform duration-300">
<!-- Card 0 - NEW -->
<div class="flex-shrink-0 w-72 bg-white rounded-2xl overflow-hidden">
<div class="h-48">
<img src="images/news6.jpg" alt="News 6" class="w-full h-full object-cover">
</div>
<div class="p-4">
<div class="flex space-x-2 mb-3">
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">09.2025</span>
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">国际奖项</span>
</div>
<div class="space-y-1">
<p class="text-sm text-gray-700">奖项:Best Student Research Award</p>
<p class="text-sm text-gray-700">比赛:buildingSMART openBIM Awards 2025, Berlin, Germany</p>
</div>
</div>
</div>
<!-- Card 1 -->
<div class="flex-shrink-0 w-72 bg-white rounded-2xl overflow-hidden">
<div class="h-48">
<img src="images/news1.jpg" alt="News 1" class="w-full h-full object-cover">
</div>
<div class="p-4">
<div class="flex space-x-2 mb-3">
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">08.2025</span>
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">论文录用</span>
</div>
<div class="space-y-1">
<p class="text-sm text-gray-700">会议:TPAMI</p>
<p class="text-sm text-gray-700">论文:I-Filtering: Implicit Filtering for Learning Neural Distance Functions from 3D Point Clouds</p>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="flex-shrink-0 w-72 bg-white rounded-2xl overflow-hidden">
<div class="h-48">
<img src="images/news2.jpg" alt="News 2" class="w-full h-full object-cover">
</div>
<div class="p-4">
<div class="flex space-x-2 mb-3">
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">03.2025</span>
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">论文录用</span>
</div>
<div class="space-y-1">
<p class="text-sm text-gray-700">刊物:JCCE</p>
<p class="text-sm text-gray-700">论文:BIMFusion: Texturing Building Information Models Using Diffusion Generative Methods</p>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="flex-shrink-0 w-72 bg-white rounded-2xl overflow-hidden">
<div class="h-48">
<img src="images/news3.jpg" alt="News 3" class="w-full h-full object-cover">
</div>
<div class="p-4">
<div class="flex space-x-2 mb-3">
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">03.2025</span>
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">论文录用</span>
</div>
<div class="space-y-1">
<p class="text-sm text-gray-700">刊物:Automation in Construction</p>
<p class="text-sm text-gray-700">论文:BIMNet: Dataset and benchmark for as-built BIM reconstruction from real-world point cloud</p>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="flex-shrink-0 w-72 bg-white rounded-2xl overflow-hidden">
<div class="h-48">
<img src="images/news4.jpg" alt="News 4" class="w-full h-full object-cover">
</div>
<div class="p-4">
<div class="flex space-x-2 mb-3">
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">02.2025</span>
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">论文录用</span>
</div>
<div class="space-y-1">
<p class="text-sm text-gray-700">会议:AAAI</p>
<p class="text-sm text-gray-700">论文:FatesGS: Fast and Accurate Sparse-View Surface Reconstruction using Gaussian Splatting with Depth-Feature Consistency</p>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="flex-shrink-0 w-72 bg-white rounded-2xl overflow-hidden">
<div class="h-48">
<img src="images/news5.jpg" alt="News 5" class="w-full h-full object-cover">
</div>
<div class="p-4">
<div class="flex space-x-2 mb-3">
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">02.2025</span>
<span class="px-3 py-1 text-gray-700 text-sm rounded-full" style="background-color: #eef9ff;">论文录用</span>
</div>
<div class="space-y-1">
<p class="text-sm text-gray-700">会议:AAAI</p>
<p class="text-sm text-gray-700">论文:Sparis: Neural Implicit Surface Reconstruction of Indoor Scenes from Sparse Views</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="awards" class="max-w-5xl mx-auto px-6 py-12">
<h2 id="awardsTitle" class="text-2xl font-bold mb-6">获奖🏆</h2>
<!-- Award card 2025 buildingSMART -->
<div class="grid md:grid-cols-[150px_1fr] gap-4 p-4 rounded-2xl border mb-3">
<img src="images/buildingSmart.png" alt="buildingSMART 2025 Award">
<div>
<h3 class="font-semibold">
Best Student Research Award🏆 -- buildingSMART openBIM Awards 2025
</h3>
<p class="text-m text-gray-700">
Held in conjunction with <span class="font-medium"><b>buildingSMART International Summit 2025</b></span>, Berlin, Germany.
</p>
<p class="text-m text-gray-500 mt-1">
Yudong Liu, Han Huang, Ge Gao, Ziyi Ke, Shengtao Li, Xiaowei Zhang, Ming Gu
</p>
</div>
</div>
<!-- Award card 2023 -->
<div class="grid md:grid-cols-[150px_1fr] gap-4 p-4 rounded-2xl border mb-3">
<img src="images/23-2d-1.png" alt="CVPR 2023 Award">
<div>
<h3 class="font-semibold">
First Place🥇 -- Scan-to-BIM Challenge (2D Floorplan Reconstruction)
</h3>
<p class="text-m text-gray-700">
Held in conjunction with <span class="font-medium"><b>CVPR 2023</b></span>, Vancouver, Canada.
</p>
<p class="text-m text-gray-500 mt-1">
Cheng Peng, Ziyi Ke, Zijian Sun, Yudong Liu, Xinyi Du, Chao Deng, Ge Gao, Ming Gu
</p>
</div>
</div>
<!-- Award card 2023 -->
<div class="grid md:grid-cols-[150px_1fr] gap-4 p-4 rounded-2xl border mb-3">
<img src="images/23-3d-2.png" alt="CVPR 2023 Award">
<div>
<h3 class="font-semibold">
Second Place🥈 -- Scan-to-BIM Challenge (3D Building Model Reconstruction)
</h3>
<p class="text-m text-gray-700">
Held in conjunction with <span class="font-medium"><b>CVPR 2023</b></span>, Vancouver, Canada.
</p>
<p class="text-m text-gray-500 mt-1">
Cheng Peng, Ziyi Ke, Zijian Sun, Yudong Liu, Xinyi Du, Chao Deng, Ge Gao, Ming Gu
</p>
</div>
</div>
<!-- Award card 2022 -->
<div class="grid md:grid-cols-[150px_1fr] gap-4 p-4 rounded-2xl border mb-3">
<img src="images/22-2d-1.png" alt="CVPR 2022 Award" >
<div>
<h3 class="font-semibold">
First Place🥇 -- Scan-to-BIM Challenge (2D Floorplan Reconstruction)
</h3>
<p class="text-m text-gray-700">
Held in conjunction with <span class="font-medium"><b>CVPR 2022</b></span>, New Orleans, USA.
</p>
<p class="text-m text-gray-500 mt-1">
Shengtao Li, Gaoming Fan, Han Huang, Hairong Luo, Ge Gao, Ming Gu
</p>
</div>
</div>
<!-- Award card 2022 -->
<div class="grid md:grid-cols-[150px_1fr] gap-4 p-4 rounded-2xl border ">
<img src="images/22-3d-1.png" alt="CVPR 2022 Award" >
<div>
<h3 class="font-semibold">
First Place🥇 -- Scan-to-BIM Challenge (3D Floorplan Reconstruction)
</h3>
<p class="text-m text-gray-700">
Held in conjunction with <span class="font-medium"><b>CVPR 2022</b></span>, New Orleans, USA.
</p>
<p class="text-m text-gray-500 mt-1">
Han Huang, Gaoming Fan, Shengtao Li, Ge Gao, Ming Gu
</p>
</div>
</div>
</section>
<!-- Publications -->
<section id="publications" class="max-w-5xl mx-auto px-6 py-12">
<h2 id="publicationsTitle" class="text-2xl font-bold mb-6">论文发表📄</h2>
<!-- Year -->
<h3 class="text-xl font-semibold mb-4">2025</h3>
<div class="space-y-6">
<!-- Paper Item -->
<div class="flex space-x-4">
<img src="images/TPAMI_2025_IFiltering.png" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
I-Filtering: Implicit Filtering for Learning Neural Distance Functions from 3D Point Clouds
</h4>
<p class="text-m italic text-gray-600">
Shengtao Li, Yudong Liu, Ge Gao*, Ming Gu, Yu-Shen Liu
</p>
<p class="text-m text-gray-600">IEEE Transactions on Pattern Analysis and Machine Intelligence (<b>TPAMI</b>), 2025 </p>
<div class="space-x-3 text-m mt-1">
<a href="https://list17.github.io/ImplicitFilter" class="text-blue-600 hover:underline">Project page</a>
<a href="https://www.computer.org/csdl/journal/tp/5555/01/11141752/29uDQAKyJLq" class="text-blue-600 hover:underline">Paper</a>
<a href="https://github.com/list17/ImplicitFiltering" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
<div class="flex space-x-4">
<img src="images/AUTCON2025_bimnet.jpg" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
BIMNet: Dataset and benchmark for as-built BIM reconstruction from real-world point cloud
</h4>
<p class="text-m italic text-gray-600">
Yudong Liu, Han Huang, Ge Gao*, Ziyi Ke, Shengtao Li, Ming Gu
</p>
<p class="text-m text-gray-600">Automation in Construction (<b>AUTCON</b>), 2025 </p>
<div class="space-x-3 text-m mt-1">
<a href="https://thucbims.github.io/bimnet/" class="text-blue-600 hover:underline">Project page</a>
<a href="https://www.sciencedirect.com/science/article/abs/pii/S0926580525001360" class="text-blue-600 hover:underline">Paper</a>
<a href="https://github.com/LydJason/BIMNet" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
<div class="flex space-x-4">
<img src="images/JCCCE2025_bimfusion.png" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
BIMFusion: Texturing Building Information Models Using Diffusion Generative Methods
</h4>
<p class="text-m italic text-gray-600">
Chao Deng, Han Huang, Ziyi Ke, Yulun Wu, Ge Gao*, Ming Gu
</p>
<p class="text-m text-gray-600">Journal of Computing in Civil Engineering (<b>JCCE</b>), 2025 </p>
<div class="space-x-3 text-m mt-1">
<a href="#" class="text-blue-600 hover:underline">Project page</a>
<a href="#" class="text-blue-600 hover:underline">Paper</a>
<a href="#" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
<div class="flex space-x-4">
<img src="images/AAAI2025_FatesGS.png" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
FatesGS: Fast and Accurate Sparse-View Surface Reconstruction using Gaussian Splatting with Depth-Feature Consistency
</h4>
<p class="text-m italic text-gray-600">
Han Huang#, Yulun Wu#, Chao Deng, Ge Gao*, Ming Gu, Yu-Shen Liu
</p>
<p class="text-m text-gray-600">The 39th Annual AAAI Conference on Artificial Intelligence (<b>AAAI</b>), 2025</p>
<div class="space-x-3 text-m mt-1">
<a href="https://arxiv.org/abs/2501.04628" class="text-blue-600 hover:underline">Project page</a>
<a href="https://alvin528.github.io/FatesGS/" class="text-blue-600 hover:underline">Paper</a>
<a href="https://github.com/yulunwu0108/FatesGS" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
<div class="flex space-x-4">
<img src="images/AAAI2025_Sparis.png" alt="Paper thumbnail" class="rounded shadow h-auto" width="200" >
<div>
<h4 class="font-semibold text-gray-900">
Sparis: Neural Implicit Surface Reconstruction of Indoor Scenes from Sparse Views
</h4>
<p class="text-m italic text-gray-600">
Yulun Wu#, Han Huang#, Wenyuan Zhang, Chao Deng, Ge Gao*, Ming Gu, Yu-Shen Liu
</p>
<p class="text-m text-gray-600">The 39th Annual AAAI Conference on Artificial Intelligence (<b>AAAI</b>), 2025</p>
<div class="space-x-3 text-m mt-1">
<a href="https://yulunwu0108.github.io/Sparis/" class="text-blue-600 hover:underline">Project page</a>
<a href="https://arxiv.org/abs/2501.01196" class="text-blue-600 hover:underline">Paper</a>
<a href="https://github.com/yulunwu0108/Sparis" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
</div>
<!-- Year -->
<br>
<h3 class="text-xl font-semibold mb-4">2024</h3>
<div class="space-y-6">
<div class="flex space-x-4">
<img src="images/ECCV2024_Filtering.png" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
Implicit Filtering for Learning Neural Signed Distance Functions from 3D Point Clouds
</h4>
<p class="text-m italic text-gray-600">
Shengtao Li, Ge Gao*, Yudong Liu, Ming Gu, Yu-Shen Liu
</p>
<p class="text-m text-gray-600">The 18th European Conference on Computer Vision (<b>ECCV</b>), 2024.</p>
<div class="space-x-3 text-m mt-1">
<a href="https://list17.github.io/ImplicitFilter" class="text-blue-600 hover:underline">Project page</a>
<a href="https://github.com/list17/ImplicitFiltering" class="text-blue-600 hover:underline">Paper</a>
<a href="https://arxiv.org/abs/2407.13342" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
<div class="flex space-x-4">
<img src="images/AAAI2024_shengtao.png" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
GridFormer: Point-Grid Transformer for Surface Reconstruction
</h4>
<p class="text-m italic text-gray-600">
Shengtao Li, Ge Gao*, Yudong Liu, Yu-Shen Liu, Ming Gu
</p>
<p class="text-m text-gray-600">The 38th Annual AAAI Conference on Artificial Intelligence (<b>AAAI</b>), 2024</p>
<div class="space-x-3 text-m mt-1">
<a href="https://arxiv.org/abs/2401.02292" class="text-blue-600 hover:underline">Paper</a>
<a href="https://github.com/list17/GridFormer" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
<div class="flex space-x-4">
<img src="images/AAAI2024_huanghan.png" alt="Paper thumbnail" class="rounded shadow" width="200">
<div>
<h4 class="font-semibold text-gray-900">
NeuSurf: On-Surface Priors for Neural Surface Reconstruction from Sparse Input Views
</h4>
<p class="text-m italic text-gray-600">
Han Huang, Yulun Wu, Junsheng Zhou, Ge Gao*, Ming Gu, Yu-Shen Liu
</p>
<p class="text-m text-gray-600">The 38th Annual AAAI Conference on Artificial Intelligence (<b>AAAI</b>), 2024</p>
<div class="space-x-3 text-m mt-1">
<a href="https://alvin528.github.io/NeuSurf/" class="text-blue-600 hover:underline">Project page</a>
<a href="https://arxiv.org/abs/2312.13977" class="text-blue-600 hover:underline">Paper</a>
<a href="https://github.com/yulunwu0108/NeuSurf" class="text-blue-600 hover:underline">Github</a>
</div>
</div>
</div>
</div>
</section>
<!-- Visitor Map Section -->
<section id="visitors" class="max-w-5xl mx-auto px-6 py-12">
<h2 id="visitorsTitle" class="text-2xl font-bold mb-6">访客地图🗺</h2>
<div class="flex justify-center">
<div class="w-full max-w-xl">
<script type="text/javascript" id="mapmyvisitors" src="//mapmyvisitors.com/map.js?d=u2JamK3kKhxxpds_wdsLvh9917-FCmkkIgRbgcvt4wo&cl=ffffff&w=a"></script>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-100 mt-12 py-6">
<div class="max-w-5xl mx-auto px-6 text-m text-gray-600">
© 2025 CBIMS research group · School of software, Tsinghua University · Contact: [email protected]
</div>
</footer>
<script>
// Language switching functionality
const translations = {
zh: {
siteTitle: "CBIMS研究组",
navAbout: "关于我们",
navNews: "新闻",
navAwards: "获奖",
navPublications: "论文发表",
navVisitors: "访客地图",
languageText: "语言",
aboutTitle: "关于我们🌍",
aboutText: "我们是清华大学软件学院CBIMS研究组。我们的研究专注于建筑信息模型(BIM)、3D计算机视觉和人工智能(AI)。我们致力于连接建筑、工程和建设(AEC)行业与人工智能之间的桥梁。",
newsTitle: "新闻✨",
awardsTitle: "获奖🏆",
publicationsTitle: "论文发表📄",
visitorsTitle: "访客地图🗺️"
},
en: {
siteTitle: "CBIMS research group",
navAbout: "About",
navNews: "News",
navAwards: "Awards",
navPublications: "Publications",
navVisitors: "Visitor Map",
languageText: "Language",
aboutTitle: "About Us🌍",
aboutText: "We are the CBIMS research group from School of software, Tsinghua University. Our research focuses on Building Information Model (BIM), 3D computer vision, and Artificial Intelligence (AI). We aim to bridge the gap between Architecture, Engineering & Construction (AEC) industry and AI.",
newsTitle: "News✨",
awardsTitle: "Awards🏆",
publicationsTitle: "Publications📄",
visitorsTitle: "Visitor Map🗺️"
}
};
let currentLang = 'zh';
function updateLanguage(lang) {
currentLang = lang;
const t = translations[lang];
document.getElementById('siteTitle').textContent = t.siteTitle;
document.getElementById('nav-about').textContent = t.navAbout;
document.getElementById('nav-news').textContent = t.navNews;
document.getElementById('nav-awards').textContent = t.navAwards;
document.getElementById('nav-publications').textContent = t.navPublications;
document.getElementById('nav-visitors').textContent = t.navVisitors;
document.getElementById('languageText').textContent = t.languageText;
document.getElementById('aboutTitle').textContent = t.aboutTitle;
document.getElementById('aboutText').textContent = t.aboutText;
document.getElementById('newsTitle').textContent = t.newsTitle;
document.getElementById('awardsTitle').textContent = t.awardsTitle;
document.getElementById('publicationsTitle').textContent = t.publicationsTitle;
document.getElementById('visitorsTitle').textContent = t.visitorsTitle;
}
// Language dropdown functionality
const languageBtn = document.getElementById('languageBtn');
const languageDropdown = document.getElementById('languageDropdown');
const languageOptions = document.querySelectorAll('.language-option');
languageBtn.addEventListener('click', (e) => {
e.preventDefault();
e.stopPropagation();
languageDropdown.classList.toggle('hidden');
});
languageOptions.forEach(option => {
option.addEventListener('click', (e) => {
e.preventDefault();
e.stopPropagation();
const lang = option.getAttribute('data-lang');
updateLanguage(lang);
languageDropdown.classList.add('hidden');
});
});
// Close dropdown when clicking outside
document.addEventListener('click', (e) => {
if (!languageBtn.contains(e.target) && !languageDropdown.contains(e.target)) {
languageDropdown.classList.add('hidden');
}
});
// Initialize with Chinese
updateLanguage('zh');
// News carousel functionality
const cardsContainer = document.getElementById('cardsContainer');
const leftBtn = document.getElementById('leftBtn');
const rightBtn = document.getElementById('rightBtn');
let scrollPosition = 0;
const cardWidth = 288 + 24; // 72 * 4 (w-72) + 24px gap
const maxScroll = cardWidth * 3; // Can scroll 3 card width (since we show 3 out of 6)
function updateButtons() {
leftBtn.style.display = scrollPosition <= 0 ? 'none' : 'flex';
rightBtn.style.display = scrollPosition >= maxScroll ? 'none' : 'flex';
}
function scrollCards(direction) {
if (direction === 'left' && scrollPosition > 0) {
scrollPosition -= cardWidth;
} else if (direction === 'right' && scrollPosition < maxScroll) {
scrollPosition += cardWidth;
}
cardsContainer.style.transform = `translateX(-${scrollPosition}px)`;
updateButtons();
}
leftBtn.addEventListener('click', () => scrollCards('left'));
rightBtn.addEventListener('click', () => scrollCards('right'));
// Initialize button visibility
updateButtons();
</script>
</body>
</html>