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

187 lines
4 KiB
Vue
Raw Normal View History

2023-05-02 09:44:23 +00:00
<script setup lang="ts">
2023-05-02 15:22:46 +00:00
const topBarItem: string[] = [
'返回主页',
'所有帖子',
'发布帖子',
'技术交流',
'关于我们',
]
2023-05-02 09:44:23 +00:00
2023-05-02 15:22:46 +00:00
let topBarColor: string[] = [
'red',
'yellow',
'blue',
'green',
'purple',
'orange',
]
2023-05-02 09:44:23 +00:00
2023-05-02 15:22:46 +00:00
let topicStyle = {}
2023-05-02 09:44:23 +00:00
2023-05-02 15:22:46 +00:00
// 接受父组件的传值
let props = defineProps(['isMainPage', 'isTopicPage'])
2023-05-02 09:44:23 +00:00
2023-05-02 15:22:46 +00:00
const isMain = props.isMainPage
const isTopicPage = props.isMainPage
// 如果是主页的话删除 “返回主页” 项目
if (isMain) {
topBarItem.shift()
}
2023-05-02 09:44:23 +00:00
2023-05-02 15:22:46 +00:00
if (isTopicPage) {
topicStyle = {
top: 0,
position: 'sticky',
'z-index': 1007,
/* 设置可视区域内容不覆盖顶部 shadow */
'margin-bottom': '10px',
}
2023-05-02 09:44:23 +00:00
}
2023-05-02 15:22:46 +00:00
// 根据导航条的项目个数操作 css 中导航条的宽度
let navItemNum = topBarItem.length
const navItemNumString = navItemNum + '00px'
// 根据导航条的项目个数操作 css 中导航条的 hover
topBarColor.forEach((e, index) => {
topBarColor[index] = '--kungalgame-' + e + '-3'
})
2023-04-14 13:58:13 +00:00
</script>
<template>
2023-05-02 15:22:46 +00:00
<div class="header" :style="topicStyle">
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-05-02 15:22:46 +00:00
<style lang="less" scoped>
2023-04-18 08:04:47 +00:00
/* 头部样式 */
2023-04-14 13:58:13 +00:00
.header {
2023-04-18 08:04:47 +00:00
/* 头部高度 */
height: 58px;
/* 头部下方阴影 */
2023-05-02 15:22:46 +00:00
box-shadow: 0 2px 4px 0 @kungalgame-trans-blue-1;
2023-04-18 08:04:47 +00:00
/* 头部背景 */
backdrop-filter: blur(5px);
2023-05-02 15:22:46 +00:00
background-color: @kungalgame-trans-white-5;
2023-04-18 08:04:47 +00:00
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-05-02 15:22:46 +00:00
img {
height: 50px;
margin-left: 50px;
cursor: pointer;
}
span {
margin-left: 20px;
margin-right: 7px;
color: @kungalgame-font-color-3;
font-weight: bold;
cursor: pointer;
}
2023-04-14 13:58:13 +00:00
}
2023-05-02 15:22:46 +00:00
@navNumber: v-bind(navItemNum);
2023-04-14 13:58:13 +00:00
.top-bar {
2023-04-18 08:04:47 +00:00
position: relative;
text-align: center;
2023-05-02 15:22:46 +00:00
width: v-bind(navItemNumString);
ul {
align-items: center;
display: flex;
right: 5%;
.top-bar-box {
border-radius: 2px;
bottom: 0;
height: 7px;
left: 0;
position: absolute;
transition: 0.5s;
width: calc(100% / @navNumber);
}
li {
color: @kungalgame-blue-5;
cursor: pointer;
display: block;
font-weight: bold;
line-height: 58px;
width: 100%;
&:hover {
background-color: @kungalgame-blue-0;
border-radius: 2px;
transition: 0.5s;
}
&:nth-child(1):hover ~ .top-bar-box {
background-color: @kungalgame-red-3;
left: calc(100% / @navNumber * 0);
}
2023-04-18 08:04:47 +00:00
2023-05-02 15:22:46 +00:00
&:nth-child(2):hover ~ .top-bar-box {
background-color: @kungalgame-yellow-3;
left: calc(100% / @navNumber * 1);
}
2023-04-18 08:04:47 +00:00
2023-05-02 15:22:46 +00:00
&:nth-child(3):hover ~ .top-bar-box {
background-color: @kungalgame-blue-3;
left: calc(100% / @navNumber * 2);
}
2023-04-18 08:04:47 +00:00
2023-05-02 15:22:46 +00:00
&:nth-child(4):hover ~ .top-bar-box {
background-color: @kungalgame-green-3;
left: calc(100% / @navNumber * 3);
}
&:nth-child(5):hover ~ .top-bar-box {
background-color: @kungalgame-purple-3;
left: calc(100% / @navNumber * 4);
}
}
}
}
2023-04-18 08:04:47 +00:00
/* 用户个人信息 */
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-05-02 15:22:46 +00:00
color: @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>