static-space / src /views /AboutView.vue
zhouwei
first change
edda47e
<template>
<div class="about-page">
<div class="about-container">
<div class="about-content">
<h1 class="about-title">关于程序员小溪</h1>
<div class="about-text">
<p>
我是一名充满热情的全栈开发者,专注于创建优雅、高效的数字解决方案。
通过不断学习和实践,我致力于将创新的想法转化为现实的产品。
</p>
<p>
技术是我的工具,创造是我的动力。我相信每一行代码都有其价值,
每一个项目都是一次新的探索和挑战。
</p>
<p>
如果你对我的工作感兴趣,或者有任何技术问题想要交流,
欢迎随时联系我。让我们一起用代码改变世界!
</p>
</div>
<div class="skills-section">
<h2>技能专长</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>前端开发</h3>
<ul>
<li>Vue.js / React</li>
<li>TypeScript / JavaScript</li>
<li>HTML5 / CSS3</li>
<li>响应式设计</li>
</ul>
</div>
<div class="skill-category">
<h3>后端开发</h3>
<ul>
<li>Node.js / Python</li>
<li>数据库设计</li>
<li>API开发</li>
<li>云服务部署</li>
</ul>
</div>
<div class="skill-category">
<h3>开发工具</h3>
<ul>
<li>Git / GitHub</li>
<li>Docker</li>
<li>VS Code</li>
<li>Linux系统</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<style scoped>
.about-page {
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 2rem 0;
display: flex;
align-items: center;
justify-content: center;
}
.about-container {
max-width: 1000px;
width: 100%;
margin: 0 auto;
padding: 0 2rem;
}
.about-content {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 3rem;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
color: white;
}
.about-title {
font-size: 3rem;
font-weight: 700;
text-align: center;
margin-bottom: 2rem;
background: linear-gradient(45deg, #fff, #f0f0f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}
.about-text {
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 3rem;
opacity: 0.9;
}
.about-text p {
margin-bottom: 1.5rem;
}
.skills-section {
margin-top: 3rem;
}
.skills-section h2 {
font-size: 2rem;
font-weight: 600;
text-align: center;
margin-bottom: 2rem;
color: white;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.skill-category {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.skill-category:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}
.skill-category h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #feca57;
}
.skill-category ul {
list-style: none;
padding: 0;
}
.skill-category li {
padding: 0.5rem 0;
font-size: 1.1rem;
opacity: 0.9;
position: relative;
padding-left: 1.5rem;
}
.skill-category li::before {
content: '▶';
position: absolute;
left: 0;
color: #feca57;
font-size: 0.8rem;
}
@media (max-width: 768px) {
.about-content {
padding: 2rem;
}
.about-title {
font-size: 2rem;
}
.about-text {
font-size: 1.1rem;
}
.skills-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.skill-category {
padding: 1.5rem;
}
}
</style>