fix: restore icons and enhance technology stack
This commit is contained in:
+121
-48
@@ -5,24 +5,24 @@
|
||||
<div class="tech-stack">
|
||||
<h3>使用的技术栈</h3>
|
||||
<ul class="tech-list">
|
||||
<li v-for="tech in techStack" :key="tech.name" :class="['tech-item', tech.name.toLowerCase()]">
|
||||
<i :class="tech.icon"></i>
|
||||
{{ tech.name }}
|
||||
<li v-for="tech in techStack" :key="tech.name" class="tech-item" :style="{ '--tech-color': tech.color }">
|
||||
<span class="tech-logo" aria-hidden="true" v-html="tech.logo"></span>
|
||||
<span class="tech-name">{{ tech.name }}</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="github-info">
|
||||
<h3>开源地址</h3>
|
||||
<div class="github-links">
|
||||
<a href="https://github.com/JLinMr/Home-Vue" target="_blank" class="github-link">
|
||||
<i class="fab fa-github"></i>
|
||||
<a href="https://github.com/JLinMr/Home-Vue" target="_blank" rel="noopener noreferrer" class="github-link">
|
||||
<i class="fab fa-github" aria-hidden="true"></i>
|
||||
<div class="link-content">
|
||||
<span class="link-title">静态原项目</span>
|
||||
<span class="link-desc">Home-Vue</span>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://github.com/QWQLwToo/Home-Vue-go" target="_blank" rel="noopener noreferrer" class="github-link">
|
||||
<i class="fab fa-github"></i>
|
||||
<i class="fab fa-github" aria-hidden="true"></i>
|
||||
<div class="link-content">
|
||||
<span class="link-title">动态现项目</span>
|
||||
<span class="link-desc">Home-Vue-go</span>
|
||||
@@ -31,92 +31,156 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<button @click="closeModal" class="close-btn">
|
||||
<i class="fas fa-times"></i>
|
||||
<button type="button" class="close-btn" aria-label="关闭关于信息" @click="closeModal">
|
||||
<i class="fas fa-xmark" aria-hidden="true"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import vueLogo from '@fortawesome/fontawesome-free/svgs/brands/vuejs.svg?raw';
|
||||
import cssLogo from '@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg?raw';
|
||||
import htmlLogo from '@fortawesome/fontawesome-free/svgs/brands/html5.svg?raw';
|
||||
import javascriptLogo from '@fortawesome/fontawesome-free/svgs/brands/js.svg?raw';
|
||||
import goLogo from '@fortawesome/fontawesome-free/svgs/brands/golang.svg?raw';
|
||||
import viteLogo from '@fortawesome/fontawesome-free/svgs/solid/bolt.svg?raw';
|
||||
import ginLogo from '@fortawesome/fontawesome-free/svgs/solid/server.svg?raw';
|
||||
import sqliteLogo from '@fortawesome/fontawesome-free/svgs/solid/database.svg?raw';
|
||||
import entLogo from '@fortawesome/fontawesome-free/svgs/solid/code-branch.svg?raw';
|
||||
import jwtLogo from '@fortawesome/fontawesome-free/svgs/solid/key.svg?raw';
|
||||
|
||||
const emit = defineEmits(['close']);
|
||||
|
||||
const techStack = [
|
||||
// 前端技术栈
|
||||
{ name: 'Vue3', icon: 'fab fa-vuejs' },
|
||||
{ name: 'Vite', icon: 'fas fa-bolt' },
|
||||
{ name: 'CSS3', icon: 'fab fa-css3-alt' },
|
||||
{ name: 'HTML5', icon: 'fab fa-html5' },
|
||||
{ name: 'JavaScript', icon: 'fab fa-js' },
|
||||
// 后端技术栈
|
||||
{ name: 'Go', icon: 'fab fa-golang' },
|
||||
{ name: 'Gin', icon: 'fas fa-server' },
|
||||
{ name: 'SQLite', icon: 'fas fa-database' },
|
||||
{ name: 'Ent', icon: 'fas fa-code-branch' },
|
||||
{ name: 'JWT', icon: 'fas fa-key' }
|
||||
{ name: 'Vue 3', logo: vueLogo, color: '#42b883' },
|
||||
{ name: 'Vite', logo: viteLogo, color: '#646cff' },
|
||||
{ name: 'CSS 3', logo: cssLogo, color: '#1572b6' },
|
||||
{ name: 'HTML 5', logo: htmlLogo, color: '#e34f26' },
|
||||
{ name: 'JavaScript', logo: javascriptLogo, color: '#c99700' },
|
||||
{ name: 'Go', logo: goLogo, color: '#00add8' },
|
||||
{ name: 'Gin', logo: ginLogo, color: '#3f9d98' },
|
||||
{ name: 'SQLite', logo: sqliteLogo, color: '#0f80cc' },
|
||||
{ name: 'Ent', logo: entLogo, color: '#77828c' },
|
||||
{ name: 'JWT', logo: jwtLogo, color: '#b33ac2' }
|
||||
];
|
||||
const closeModal = () => emit('close');
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.about-page {
|
||||
width: 500px;
|
||||
width: min(560px, calc(100vw - 32px));
|
||||
max-height: calc(100dvh - 32px);
|
||||
overflow-y: auto;
|
||||
backdrop-filter: blur(5px);
|
||||
background-color: rgba(var(--background-color-rgb), 0.9);
|
||||
padding: 40px;
|
||||
padding: 32px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--border-radius);
|
||||
position: relative;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
scrollbar-gutter: stable;
|
||||
|
||||
@media (max-width: 600px) {
|
||||
padding: 20px;
|
||||
width: 90%;
|
||||
width: calc(100vw - 20px);
|
||||
max-height: calc(100dvh - 20px);
|
||||
padding: 22px 16px;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin: 0 0 16px;
|
||||
border-bottom: 2px solid var(--border-color);
|
||||
padding-bottom: 10px;
|
||||
padding: 0 40px 10px 0;
|
||||
font-size: 1rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.tech-stack ul,
|
||||
.tech-list {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.tech-stack li,
|
||||
.tech-item {
|
||||
padding: 10px 15px;
|
||||
border-radius: var(--border-radius);
|
||||
min-width: 0;
|
||||
min-height: 88px;
|
||||
padding: 10px 6px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 8px;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.tech-stack li:hover,
|
||||
.tech-item:hover {
|
||||
background-color: var(--hover-other-color);
|
||||
border-color: var(--border-color);
|
||||
background-color: var(--surface-muted);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.tech-logo {
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
color: var(--tech-color);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.tech-logo :deep(svg) {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.tech-item:hover .tech-logo {
|
||||
transform: translateY(-2px) scale(1.06);
|
||||
}
|
||||
|
||||
.tech-name {
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
color: var(--text-color);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
line-height: 1.2;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.tech-item:hover .tech-name {
|
||||
color: var(--hover-link-color);
|
||||
}
|
||||
|
||||
.tech-stack li i,
|
||||
.tech-item i {
|
||||
font-size: 1.5em;
|
||||
@media (max-width: 600px) {
|
||||
.tech-list {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.tech-item {
|
||||
min-height: 76px;
|
||||
padding: 8px 4px;
|
||||
}
|
||||
|
||||
.tech-logo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.tech-item:last-child:nth-child(3n + 1) {
|
||||
grid-column: 2;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.tech-stack li,
|
||||
.tech-item {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.github-info {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.github-links {
|
||||
@@ -133,13 +197,15 @@ h3 {
|
||||
background-color: #040404d0;
|
||||
color: white;
|
||||
padding: 15px 20px;
|
||||
border-radius: var(--border-radius);
|
||||
border: 1px solid transparent;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
flex: 1;
|
||||
|
||||
&:hover {
|
||||
background-color: #1a1a1a;
|
||||
border-color: rgba(255, 255, 255, 0.18);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
@@ -176,16 +242,23 @@ h3 {
|
||||
|
||||
.close-btn {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
top: 12px;
|
||||
right: 12px;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 0;
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
font-size: 1.5em;
|
||||
cursor: pointer;
|
||||
color: #7f8c8d;
|
||||
transition: color 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: var(--surface-muted);
|
||||
color: #c61b09;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user