更新导航栏排版
This commit is contained in:
parent
2c593005e7
commit
9fb4577a87
@ -9,7 +9,8 @@
|
|||||||
<div class="nav-center">
|
<div class="nav-center">
|
||||||
<ul class="nav-items" v-if="!isMobile">
|
<ul class="nav-items" v-if="!isMobile">
|
||||||
<li v-for="(item, index) in navItems" :key="index">
|
<li v-for="(item, index) in navItems" :key="index">
|
||||||
<router-link :to="item.link">{{ item.name }}</router-link>
|
<span v-if="item === 'divider'" class="divider">|</span>
|
||||||
|
<router-link v-else :to="item.link">{{ item.name }}</router-link>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="mobile-menu" v-else>
|
<div class="mobile-menu" v-else>
|
||||||
@ -18,8 +19,8 @@
|
|||||||
</button>
|
</button>
|
||||||
<transition name="fade">
|
<transition name="fade">
|
||||||
<ul v-if="showMobileMenu" class="mobile-nav-items">
|
<ul v-if="showMobileMenu" class="mobile-nav-items">
|
||||||
<li v-for="(item, index) in navItems" :key="index" @click="toggleMobileMenu">
|
<li v-for="(item, index) in navItems.filter(item => item !== 'divider')" :key="index" @click="toggleMobileMenu">
|
||||||
<router-link :to="item.link">{{ item.name.replace(/[☆]/g, "") }}</router-link>
|
<router-link :to="item.link">{{ item.name }}</router-link>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</transition>
|
</transition>
|
||||||
@ -48,11 +49,13 @@ const theme = computed(() => store.getters.currentTheme)
|
|||||||
const themeClass = computed(() => theme.value === 'dark' ? 'theme-dark' : 'theme-light')
|
const themeClass = computed(() => theme.value === 'dark' ? 'theme-dark' : 'theme-light')
|
||||||
|
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: '工具', link: '/tools' },
|
{name: '主页', link: '/'},
|
||||||
|
'divider',
|
||||||
{name: '博客', link: '/blog'},
|
{name: '博客', link: '/blog'},
|
||||||
{ name: '☆主页☆', link: '/' },
|
|
||||||
{name: '项目', link: '/projects'},
|
{name: '项目', link: '/projects'},
|
||||||
{ name: '关于', link: '/about' },
|
{name: '小工具', link: '/tools'},
|
||||||
|
'divider',
|
||||||
|
{name: '关于', link: '/about'}
|
||||||
]
|
]
|
||||||
|
|
||||||
// 移动端菜单
|
// 移动端菜单
|
||||||
@ -64,7 +67,7 @@ const toggleMobileMenu = () => {
|
|||||||
// 判定
|
// 判定
|
||||||
const isMobile = ref(window.innerWidth < 768)
|
const isMobile = ref(window.innerWidth < 768)
|
||||||
const handleResize = () => {
|
const handleResize = () => {
|
||||||
isMobile.value = window.innerWidth < 768
|
isMobile.value = window.innerWidth < 888
|
||||||
if (!isMobile.value) {
|
if (!isMobile.value) {
|
||||||
showMobileMenu.value = false // 桌面端时关闭移动菜单
|
showMobileMenu.value = false // 桌面端时关闭移动菜单
|
||||||
}
|
}
|
||||||
@ -83,80 +86,90 @@ const toggleTheme = () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.theme-dark {
|
.theme-dark {
|
||||||
/* 全局文字颜色、背景等由全局样式统一设置,此处仅对组件部分做局部覆盖 */
|
|
||||||
background-color: rgba(40, 40, 40);
|
background-color: rgba(40, 40, 40);
|
||||||
color: #0ff;
|
color: #0ff;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .navbar {
|
.theme-dark .navbar {
|
||||||
background-color: rgba(40, 40, 40);
|
background-color: rgba(40, 40, 40);
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .nav-left .logo {
|
.theme-dark .nav-left .logo {
|
||||||
color: #0ff;
|
color: #0ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .nav-items li a {
|
.theme-dark .nav-items li a {
|
||||||
color: #0ff;
|
color: #0ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .nav-items li a:hover {
|
.theme-dark .nav-items li a:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .nav-items li a::after {
|
.theme-dark .nav-items li a::after {
|
||||||
background-color: #0ff;
|
background-color: #0ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .login-btn {
|
.theme-dark .login-btn {
|
||||||
border: 1px solid #0ff;
|
border: 1px solid #0ff;
|
||||||
color: #0ff;
|
color: #0ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .login-btn:hover {
|
.theme-dark .login-btn:hover {
|
||||||
background: #0ff;
|
background: #0ff;
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark .hamburger-icon,
|
.theme-dark .hamburger-icon,
|
||||||
.theme-dark .hamburger-icon::before,
|
.theme-dark .hamburger-icon::before,
|
||||||
.theme-dark .hamburger-icon::after {
|
.theme-dark .hamburger-icon::after {
|
||||||
background: #0ff;
|
background: #0ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.theme-light {
|
.theme-light {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .navbar {
|
.theme-light .navbar {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .nav-left .logo {
|
.theme-light .nav-left .logo {
|
||||||
color: #2f2f2f;
|
color: #2f2f2f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .nav-items li a {
|
.theme-light .nav-items li a {
|
||||||
color: #2f2f2f;
|
color: #2f2f2f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .nav-items li a:hover {
|
.theme-light .nav-items li a:hover {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .nav-items li a::after {
|
.theme-light .nav-items li a::after {
|
||||||
background-color: #2f2f2f;
|
background-color: #2f2f2f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .login-btn {
|
.theme-light .login-btn {
|
||||||
border: 1px solid #2f2f2f;
|
border: 1px solid #2f2f2f;
|
||||||
color: #2f2f2f;
|
color: #2f2f2f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .login-btn:hover {
|
.theme-light .login-btn:hover {
|
||||||
background: #2f2f2f;
|
background: #2f2f2f;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light .hamburger-icon,
|
.theme-light .hamburger-icon,
|
||||||
.theme-light .hamburger-icon::before,
|
.theme-light .hamburger-icon::before,
|
||||||
.theme-light .hamburger-icon::after {
|
.theme-light .hamburger-icon::after {
|
||||||
background: #2f2f2f;
|
background: #2f2f2f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -171,29 +184,34 @@ const toggleTheme = () => {
|
|||||||
height: 60px;
|
height: 60px;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-left .logo {
|
.nav-left .logo {
|
||||||
font-family: 'Netron', sans-serif;
|
font-family: 'Netron', sans-serif;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-center {
|
.nav-center {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-items {
|
.nav-items {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 2rem;
|
gap: 3rem;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-items li a {
|
.nav-items li a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
transition: color 0.3s;
|
transition: color 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-items li a::after {
|
.nav-items li a::after {
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -205,13 +223,23 @@ const toggleTheme = () => {
|
|||||||
transform-origin: center;
|
transform-origin: center;
|
||||||
transition: transform 0.3s ease;
|
transition: transform 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-items li a:hover::after {
|
.nav-items li a:hover::after {
|
||||||
transform: scaleX(1);
|
transform: scaleX(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-items .divider {
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0 0.7rem;
|
||||||
|
color: gray;
|
||||||
|
opacity: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-right {
|
.nav-right {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-btn {
|
.login-btn {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
@ -219,11 +247,13 @@ const toggleTheme = () => {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background 0.3s, color 0.3s;
|
transition: background 0.3s, color 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-info {
|
.user-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-info .avatar {
|
.user-info .avatar {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
@ -244,7 +274,11 @@ const toggleTheme = () => {
|
|||||||
/* 移动端:汉堡菜单样式 */
|
/* 移动端:汉堡菜单样式 */
|
||||||
.mobile-menu {
|
.mobile-menu {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hamburger-btn {
|
.hamburger-btn {
|
||||||
width: 25px;
|
width: 25px;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
@ -253,6 +287,7 @@ const toggleTheme = () => {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hamburger-icon {
|
.hamburger-icon {
|
||||||
width: 25px;
|
width: 25px;
|
||||||
height: 3px;
|
height: 3px;
|
||||||
@ -260,6 +295,7 @@ const toggleTheme = () => {
|
|||||||
position: relative;
|
position: relative;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hamburger-icon::before,
|
.hamburger-icon::before,
|
||||||
.hamburger-icon::after {
|
.hamburger-icon::after {
|
||||||
content: "";
|
content: "";
|
||||||
@ -268,10 +304,12 @@ const toggleTheme = () => {
|
|||||||
height: 3px;
|
height: 3px;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hamburger-icon::before {
|
.hamburger-icon::before {
|
||||||
left: 0;
|
left: 0;
|
||||||
top: -8px;
|
top: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hamburger-icon::after {
|
.hamburger-icon::after {
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 8px;
|
top: 8px;
|
||||||
@ -282,16 +320,29 @@ const toggleTheme = () => {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(10px);
|
||||||
top: 45px;
|
top: 45px;
|
||||||
width: 200%;
|
|
||||||
right: -125%;
|
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
.mobile-nav-items li {
|
.mobile-nav-items li {
|
||||||
margin: 0.5rem;
|
margin: 0.5rem;
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-weight: bold;
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
transition: background 0.2s ease;
|
||||||
|
}
|
||||||
|
.theme-light .mobile-nav-items li {
|
||||||
|
background: rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
.mobile-nav-items li:hover {
|
||||||
|
background: black;
|
||||||
|
}
|
||||||
|
.theme-light .mobile-nav-items li:hover {
|
||||||
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
.mobile-nav-items li a {
|
.mobile-nav-items li a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@ -303,6 +354,7 @@ const toggleTheme = () => {
|
|||||||
.fade-leave-active {
|
.fade-leave-active {
|
||||||
transition: opacity 0.3s ease;
|
transition: opacity 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fade-enter-from,
|
.fade-enter-from,
|
||||||
.fade-leave-to {
|
.fade-leave-to {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user