[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>关于我 - 个人简介</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: #0d0d0d;
overflow: hidden;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
/* 梦幻深邃背景 */
.background {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
perspective: 1000px;
}
.abyss-layer {
position: absolute;
width: 150%;
height: 150%;
top: -25%;
left: -25%;
background: radial-gradient(circle, rgba(255, 0, 122, 0.5) 0%, transparent 70%);
filter: blur(50px);
opacity: 0.6;
animation: abyssFlow 25s infinite ease-in-out;
}
.abyss-layer:nth-child(2) {
background: radial-gradient(circle, rgba(0, 221, 235, 0.4) 0%, transparent 60%);
filter: blur(70px);
opacity: 0.5;
animation: abyssFlowReverse 35s infinite ease-in-out;
}
.abyss-layer:nth-child(3) {
background: radial-gradient(circle, rgba(255, 187, 0, 0.3) 0%, transparent 80%);
filter: blur(90px);
opacity: 0.4;
animation: abyssPulse 45s infinite ease-in-out;
}
@keyframes abyssFlow {
0% { transform: translateZ(-200px) translate(0, 0); opacity: 0.6; }
50% { transform: translateZ(-200px) translate(-15%, 10%); opacity: 0.8; }
100% { transform: translateZ(-200px) translate(0, 0); opacity: 0.6; }
}
@keyframes abyssFlowReverse {
0% { transform: translateZ(-300px) translate(0, 0); opacity: 0.5; }
50% { transform: translateZ(-300px) translate(15%, -10%); opacity: 0.7; }
100% { transform: translateZ(-300px) translate(0, 0); opacity: 0.5; }
}
@keyframes abyssPulse {
0% { transform: translateZ(-400px) scale(1); opacity: 0.4; }
50% { transform: translateZ(-400px) scale(1.15); opacity: 0.6; }
100% { transform: translateZ(-400px) scale(1); opacity: 0.4; }
}
/* 漂浮粒子 */
.particles {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
}
.particle {
position: absolute;
background: rgba(255, 255, 255, 0.5);
border-radius: 50%;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
animation: softFloat infinite ease-in-out;
}
@keyframes softFloat {
0% { transform: translateY(0) scale(1); opacity: 0.4; }
50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
100% { transform: translateY(0) scale(1); opacity: 0.4; }
}
/* 主容器 */
.container {
position: relative;
z-index: 2;
text-align: center;
padding: 50px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 35px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.1);
max-width: 700px;
animation: gentleRise 5s infinite ease-in-out;
}
@keyframes gentleRise {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}
/* 头像 */
.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
margin: 0 auto 20px;
background: url('https://pbs.twimg.com/profile_images/1759733959399272448/jtJAJKTS_400x400.jpg') center/cover no-repeat;
box-shadow: 0 5px 20px rgba(255, 0, 122, 0.5);
border: 3px solid rgba(255, 255, 255, 0.8);
}
/* 姓名 */
h1 {
font-size: 48px;
margin: 10px 0;
color: #fff;
text-shadow: 0 0 20px rgba(255, 0, 122, 0.8), 0 0 40px rgba(0, 221, 235, 0.6);
letter-spacing: 2px;
font-weight: 700;
background: linear-gradient(90deg, #ff007a, #00ddeb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* 简介 */
.bio {
font-size: 20px;
line-height: 1.6;
color: #eee;
margin: 20px 0;
opacity: 0.9;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* 技能标签 */
.skills {
margin: 20px 0;
}
.skill {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
color: #fff;
padding: 8px 16px;
margin: 5px;
border-radius: 20px;
font-size: 14px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* 社交链接 */
.social-links {
margin-top: 30px;
}
.social-link {
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 16px;
padding: 12px 25px;
border-radius: 30px;
background: linear-gradient(135deg, #ff007a, #00ddeb);
box-shadow: 0 5px 15px rgba(255, 0, 122, 0.5);
transition: all 0.4s ease;
margin: 0 10px;
position: relative;
overflow: hidden;
}
.social-link::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.5s ease, height 0.5s ease;
}
.social-link:hover::before {
width: 200px;
height: 200px;
}
.social-link:hover {
transform: scale(1.05) translateY(-3px);
box-shadow: 0 10px 20px rgba(255, 0, 122, 0.7);
}
/* 移动端适配 */
@media (max-width: 600px) {
.container {
padding: 30px;
}
.avatar {
width: 100px;
height: 100px;
}
h1 {
font-size: 36px;
}
.bio {
font-size: 16px;
}
.skill {
font-size: 12px;
padding: 6px 12px;
}
.social-link {
padding: 10px 20px;
font-size: 14px;
margin: 5px;
}
}
</style>
</head>
<body>
<div class="background">
<div class="abyss-layer"></div>
<div class="abyss-layer"></div>
<div class="abyss-layer"></div>
</div>
<div class="particles" id="particles"></div>
<div class="container">
<div class="avatar"></div>
<h1>张三</h1>
<p class="bio">
你好!我是一个热爱创造的前端开发者,喜欢将代码与设计融合,打造优雅而实用的作品。生活中的我喜欢旅行、摄影和品尝咖啡。
</p>
<div class="skills">
<span class="skill">HTML/CSS</span>
<span class="skill">JavaScript</span>
<span class="skill">React</span>
<span class="skill">UI/UX</span>
</div>
<div class="social-links">
<a target="_blank" class="social-link">GitHub</a>
<a target="_blank" class="social-link">Twitter</a>
<a href="mailto:example@email.com" class="social-link">Email</a>
</div>
</div>
<script>
// 生成漂浮粒子
const particlesDiv = document.getElementById('particles');
const particleCount = 15;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
const size = Math.random() * 15 + 5;
particle.style.width = `${size}px`;
particle.style.height = particle.style.width;
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100}%`;
particle.style.animationDuration = `${Math.random() * 5 + 3}s`;
particle.style.animationDelay = `${Math.random() * 2}s`;
particlesDiv.appendChild(particle);
}
</script>
</body>
</html>