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

161 lines
3.4 KiB
Vue
Raw Normal View History

2023-04-14 13:58:13 +00:00
<script lang="ts">
import { Icon } from "@iconify/vue";
export default {
name: "KUNGalgameTopBar",
components: {
Icon,
},
setup() {
let topBarItem: string[] = ["回到主页", "帖子发布", "技术交流", "关于我们"];
return {
topBarItem,
};
},
};
</script>
<template>
<div class="header">
<!-- 顶部左侧交互栏 -->
<div class="nav-top">
<div class="kungal-info">
2023-04-18 08:04:47 +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-04-18 08:04:47 +00:00
<!-- 顶部单个板块 -->
2023-04-14 13:58:13 +00:00
<li v-for="(kun, index) in topBarItem" :key="index">{{ kun }}</li>
2023-04-18 08:04:47 +00:00
<!-- 顶部板块下部的 hover 效果 -->
2023-04-14 13:58:13 +00:00
<div class="top-bar-box"></div>
</ul>
</div>
</div>
<!-- TODO: 顶部全局搜索框 -->
<!-- <div class="top-search-bar">
<Icon icon="line-md:search" :rotate="3" />
</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;
padding-right: 50px;
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-04-18 08:04:47 +00:00
width: 400px;
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;
/*
的六分之一 */
width: calc((100% / 4) * 1);
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;
}
.kungalgamer-info img {
border-radius: 50%;
height: 40px;
}
.kungalgamer-info span {
color: var(--kungalgame-font-color-2);
margin-left: 20px;
2023-04-14 13:58:13 +00:00
}
</style>