<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>快速导航</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', system-ui, sans-serif;
}
body {
background: linear-gradient(135deg, #f0f2f5 0%, #dfe6e9 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.nav-container {
background: rgba(255, 255, 255, 0.95);
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
width: 100%;
max-width: 800px;
backdrop-filter: blur(10px);
}
h1 {
color: #2d3436;
text-align: center;
margin-bottom: 2.5rem;
font-size: 2.5rem;
position: relative;
padding-bottom: 0.5rem;
}
h1::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: #1976d2;
border-radius: 2px;
}
.nav-links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1.5rem;
}
.nav-link {
background: #f8f9fa;
padding: 1.5rem;
border-radius: 12px;
text-decoration: none;
color: #212529;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.8rem;
position: relative;
overflow: hidden;
}
.nav-link:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.nav-link::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2));
transform: rotate(45deg);
transition: 0.5s;
}
.nav-link:hover::before {
animation: shine 1.5s;
}
.nav-link i {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
/* 各平台样式 */
.onecode { background: #e3f2fd; color: #1976d2; }
.github { background: #f0f4f8; color: #24292e; }
.translate { background: #e8f5e9; color: #388e3c; }
.bilibili { background: #f4e9f1; color: #00A1D6; }
.csdn { background: #fff3e0; color: #FF6F00; }
@keyframes shine {
0% { transform: translateX(-100%) rotate(45deg); }
100% { transform: translateX(100%) rotate(45deg); }
}
@media (max-width: 768px) {
.nav-container {
padding: 1.5rem;
border-radius: 16px;
}
h1 {
font-size: 2rem;
}
.nav-link {
padding: 1.2rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 1.8rem;
}
.nav-link i {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="nav-container">
<h1>快速导航</h1>
<div class="nav-links">
<a href="https://platform.onecode.cmict.cloud/"
class="nav-link onecode"
target="_blank">
<i class="fas fa-code"></i>
OneCode
</a>
<a href="https://github.com/"
class="nav-link github"
target="_blank">
<i class="fab fa-github"></i>
GitHub
</a>
<a href="https://translate.google.com/"
class="nav-link translate"
target="_blank">
<i class="fas fa-language"></i>
谷歌翻译
</a>
<a href="https://www.bilibili.com/"
class="nav-link bilibili"
target="_blank">
<i class="fab fa-bilibili"></i>
Bilibili
</a>
<a href="https://www.csdn.net/"
class="nav-link csdn"
target="_blank">
<i class="fas fa-blog"></i>
CSDN
</a>
<!-- 新增DeepSeek -->
<a href="https://chat.deepseek.com/"
class="nav-link deepseek"
target="_blank">
<i class="fas fa-brain"></i>
DeepSeek
</a>
<!-- 新增ChatGPT -->
<a href="https://chatgpt.com/"
class="nav-link chatgpt"
target="_blank">
<i class="fas fa-comment-dots"></i>
ChatGPT
</a>
</div>
</div>
</body>
</html>
浏览器快速导航栏
最新推荐文章于 2026-06-17 07:30:41 发布

447

被折叠的 条评论
为什么被折叠?



