Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 13 additions & 18 deletions _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,22 @@ selected_papers: false # includes a list of papers marked as "selected={true}"
line-height: 1.8;
}

/* 轮播图样式 */
/* 轮播图样式 - 增加高度 */
.carousel-showcase {
margin: 25px 0;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
height: 380px;
height: 600px; /* 从380px增加到600px */
}
.carousel-item {
height: 380px;
height: 600px; /* 同步增加 */
}
.carousel-item img {
width: 100%;
height: 100%;
object-fit: cover;
object-fit: contain; /* 改为contain确保完整显示 */
background-color: #f8f9fa; /* 添加背景色避免空白 */
}
.carousel-caption {
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
Expand Down Expand Up @@ -117,44 +118,38 @@ selected_papers: false # includes a list of papers marked as "selected={true}"
<div class="lab-card">
<h2><i class="fas fa-flask"></i> 实验室简介</h2>

<!-- 图片轮播区域 -->
<div id="labCarousel" class="carousel slide carousel-showcase" data-bs-ride="carousel">
<!-- 轮播指示器 -->
<!-- 修改轮播容器,移除 data-bs-ride="carousel" -->
<div id="labCarousel" class="carousel slide carousel-showcase">
<!-- 轮播指示器保持不变 -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#labCarousel" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#labCarousel" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#labCarousel" data-bs-slide-to="2"></button>
<!-- 添加第4、5张的指示器 -->
<button type="button" data-bs-target="#labCarousel" data-bs-slide-to="3"></button>
<button type="button" data-bs-target="#labCarousel" data-bs-slide-to="4"></button>
</div>

<!-- 轮播内容 -->
<!-- 轮播内容保持不变 -->
<div class="carousel-inner">
<!-- 第一张图片 -->
<div class="carousel-item active">
<img src="assets/img/intro1.png" class="d-block w-100" alt="intro1">
</div>

<!-- 第二张图片 -->
<div class="carousel-item">
<img src="assets/img/intro2.png" class="d-block w-100" alt="intro2">
</div>

<!-- 第三张图片 -->
<div class="carousel-item">
<img src="assets/img/intro3.png" class="d-block w-100" alt="intro3">
</div>

<!-- 第四张图片 -->
<div class="carousel-item">
<img src="assets/img/intro4.png" class="d-block w-100" alt="intro4">
</div>

<!-- 第五张图片 -->
<div class="carousel-item">
<img src="assets/img/intro5.png" class="d-block w-100" alt="intro5">
</div>
</div>

<!-- 导航按钮 -->
<!-- 导航按钮保持不变 -->
<button class="carousel-control-prev" type="button" data-bs-target="#labCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
Expand Down
5 changes: 2 additions & 3 deletions _pages/members.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
layout: page
title: 多模态与类脑智能计算团队
title: 成员
permalink: /members/
description: Multimodal and Brain-inspired Intelligent Computing
# description: Multimodal and Brain-inspired Intelligent Computing
nav: true
nav_order: 3
nav_title: 成员
display_categories: [Professor, Current students, Graduated students]
horizontal: false
---
Expand Down
4 changes: 2 additions & 2 deletions _projects/JinZhihua.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ related_publications: false
</div>
</div>

<h4 style="color: #1a6fc4; margin-bottom: 30px;">个人成果</h4>
<h4 style="color: #1a6fc4; margin-bottom: 10px;">个人成果</h4>
<div style="margin-bottom: 15px; padding: 12px; border-left: 4px solid #3498db; background-color: transparent; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
<span style="font-weight: bold; color: #e74c3c;">[1]</span> Jin Z, He K and Xu D. Hybrid Coefficient Fusion in Multi-resolution Singular Value Decomposition Domain for Medical Images. <span style="font-style: italic; color: #2980b9;">8th International Conference on Image, Vision and Computing, 2023, pp.397-402.</span>
</div>

<h4 style="color: #1a6fc4; margin-bottom: 30px;">学生风采</h4>
<h4 style="color: #1a6fc4; margin-bottom: 10px;">学生风采</h4>
<div class="row">
<div class="col-sm mt-3 mt-md-0">
{% include figure.liquid loading="eager" path="assets/img/jzh1.jpg" title="生活照片" class="img-fluid rounded z-depth-1" %}
Expand Down
Loading