initial commit

This commit is contained in:
Jiao77
2025-09-29 05:57:18 +08:00
commit 9c0051c92b
73 changed files with 18737 additions and 0 deletions

198
src/components/Header.astro Normal file
View File

@@ -0,0 +1,198 @@
---
export interface Props {
title?: string;
description?: string;
navigationItems?: Array<{ label: string; href: string; icon?: string }>;
className?: string;
}
const {
title = 'Jiao77 - AI & Technology Explorer'
} = Astro.props;
---
<header class="header-container">
<!-- 收缩状态的页眉 -->
<div class="header-collapsed" id="header-collapsed">
<div class="header-content">
<div class="header-brand">
<h1 class="brand-title">{title}</h1>
</div>
<button class="expand-button" id="expand-button">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
<!-- 展开状态的页眉 -->
<div class="header-expanded" id="header-expanded">
<div class="header-content">
<div class="header-brand">
<h1 class="brand-title">{title}</h1>
</div>
<nav class="main-nav" aria-label="主导航">
<a href="/" class="nav-item" aria-label="首页">
<i class="fas fa-home"></i>
<span>首页</span>
</a>
<a href="/reports" class="nav-item" aria-label="报告">
<i class="fas fa-chart-line"></i>
<span>报告</span>
</a>
<a href="/components-demo" class="nav-item" aria-label="组件示例">
<i class="fas fa-cube"></i>
<span>组件</span>
</a>
</nav>
<button class="collapse-button" id="collapse-button">
<i class="fas fa-times"></i>
</button>
</div>
</div>
</header>
<style>
.header-container {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-collapsed {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding: 1rem 0;
transform: translateY(0);
transition: all 0.3s ease;
}
.header-expanded {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
padding: 1.5rem 0;
transform: translateY(-100%);
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header-expanded.active {
transform: translateY(0);
}
.header-collapsed.hidden {
transform: translateY(-100%);
}
.header-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.header-brand {
flex: 1;
}
.brand-title {
font-size: 1.5rem;
font-weight: 700;
color: #011a2d;
margin: 0;
background: linear-gradient(135deg, #011a2d, #2c4a6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.navigation {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: 1rem;
background: rgba(255, 255, 255, 0.1);
color: #011a2d;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-item:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.expand-button,
.collapse-button {
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 0.75rem;
padding: 0.75rem;
color: #011a2d;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1.1rem;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
}
.expand-button:hover,
.collapse-button:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.05);
}
@media (max-width: 768px) {
.navigation {
flex-direction: column;
gap: 1rem;
width: 100%;
margin-top: 1rem;
}
.header-content {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
padding: 0 1rem;
}
.header-brand {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-item {
width: 100%;
justify-content: center;
}
}
</style>
<script>
import '../scripts/header.ts';
</script>