kun-galgame-vue/src/components/KUNGalgameTopBar.vue

164 lines
3.5 KiB
Vue
Raw Normal View History

2023-05-02 09:44:23 +00:00
<script setup lang="ts">
// 引入一个 vue3 中传参的函数
import { defineProps } from 'vue'
import { useHeaderStore } from '@/store/modules/header'
// 接受父组件的传值
const props = defineProps(['isMainPage'])
const store = useHeaderStore()
let navItemNum = store.topBarItem.length
const navItemNumString = navItemNum + '00px'
const isMain = true
if (isMain === true) {
store.topBarItem.unshift()
}
let topBarItem: string[] = store.topBarItem
2023-04-14 13:58:13 +00:00
</script>
<template>
2023-05-02 09:44:23 +00:00
<div class="header" :isMainPage="isMain">
2023-04-14 13:58:13 +00:00
<!-- 顶部左侧交互栏 -->
<div class="nav-top">
<div class="kungal-info">
2023-05-02 09:44:23 +00:00
<!-- 网站的名字和网站图标 -->
2023-04-18 17:05:27 +00:00
<img src="../assets/images/favicon.png" alt="KUNgal" />
<span>KUNGalgame</span>
2023-04-14 13:58:13 +00:00
</div>
<div class="top-bar">
<ul>
2023-05-02 09:44:23 +00:00
<!-- 顶部单个板块 -->
2023-04-14 13:58:13 +00:00
<li v-for="(kun, index) in topBarItem" :key="index">{{ kun }}</li>
2023-05-02 09:44:23 +00:00
<!-- 顶部板块下部的 hover 效果 -->
2023-04-14 13:58:13 +00:00
<div class="top-bar-box"></div>
</ul>
</div>
</div>
<div class="kungalgamer-info">
2023-04-18 17:05:27 +00:00
<img src="../assets/images/KUN.jpg" alt="KUN" />
2023-04-14 13:58:13 +00:00
<span>KUN</span>
</div>
</div>
</template>
2023-04-18 08:04:47 +00:00
<style scoped>
/* 头部样式 */
2023-04-14 13:58:13 +00:00
.header {
2023-04-18 08:04:47 +00:00
/* 头部高度 */
height: 58px;
/* 头部下方阴影 */
box-shadow: 0 2px 4px 0 var(--kungalgame-trans-blue-1);
/* 头部背景 */
backdrop-filter: blur(5px);
background-color: var(--kungalgame-trans-white-5);
display: flex;
align-items: center;
justify-content: space-between;
2023-04-14 13:58:13 +00:00
}
.nav-top {
2023-04-18 08:04:47 +00:00
display: flex;
align-items: center;
2023-04-14 13:58:13 +00:00
}
.kungal-info {
2023-04-18 08:04:47 +00:00
display: flex;
align-items: center;
2023-04-14 13:58:13 +00:00
}
2023-04-18 08:04:47 +00:00
/* 网站 LOGO */
.kungal-info img {
height: 50px;
margin-left: 50px;
cursor: pointer;
}
/* 网站名称 */
.kungal-info span {
margin-left: 20px;
margin-right: 7px;
color: var(--kungalgame-font-color-3);
font-weight: bold;
cursor: pointer;
}
/* 顶部导航栏 */
2023-04-14 13:58:13 +00:00
.top-bar {
2023-05-02 09:44:23 +00:00
/* 导航条内容个数的变化 */
width: v-bind(navItemNumString);
2023-04-18 08:04:47 +00:00
position: relative;
text-align: center;
}
.top-bar ul {
display: flex;
align-items: center;
right: 5%;
}
.top-bar ul .top-bar-box {
position: absolute;
bottom: 0;
left: 0;
/*
的六分之一 */
2023-05-02 09:44:23 +00:00
width: calc((100% / v-bind(navItemNum)) * 1);
2023-04-18 08:04:47 +00:00
height: 7px;
border-radius: 2px;
transition: 0.5s;
}
.top-bar ul li {
width: 100%;
color: var(--kungalgame-blue-5);
font-weight: bold;
display: block;
width: 100%;
line-height: 58px;
cursor: pointer;
}
.top-bar ul li:hover {
background-color: var(--kungalgame-blue-0);
transition: 0.5s;
border-radius: 2px;
}
.top-bar ul li:nth-child(1):hover ~ .top-bar-box {
left: calc(100% / 4 * 0);
background-color: var(--kungalgame-red-3);
}
.top-bar ul li:nth-child(2):hover ~ .top-bar-box {
left: calc(100% / 4 * 1);
background-color: var(--kungalgame-yellow-3);
}
.top-bar ul li:nth-child(3):hover ~ .top-bar-box {
left: calc(100% / 4 * 2);
background-color: var(--kungalgame-blue-3);
2023-04-14 13:58:13 +00:00
}
2023-04-18 08:04:47 +00:00
.top-bar ul li:nth-child(4):hover ~ .top-bar-box {
left: calc(100% / 4 * 3);
background-color: var(--kungalgame-green-3);
}
/* 顶部搜索框 */
/*
TODO:
*/
/* 用户个人信息 */
2023-04-14 13:58:13 +00:00
.kungalgamer-info {
2023-04-18 08:04:47 +00:00
display: flex;
align-items: center;
2023-04-24 02:15:35 +00:00
overflow: hidden;
2023-04-18 08:04:47 +00:00
}
.kungalgamer-info img {
border-radius: 50%;
height: 40px;
}
2023-04-24 02:15:35 +00:00
.kungalgamer-info > span {
2023-04-18 08:04:47 +00:00
color: var(--kungalgame-font-color-2);
2023-04-24 02:15:35 +00:00
margin-left: 30px;
padding-right: 50px;
2023-04-14 13:58:13 +00:00
}
</style>