mirror of
https://github.com/LifeArchiveProject/WeChatDataAnalysis.git
synced 2026-02-19 22:30:49 +08:00
- 主题系统收敛为 Modern/Game Boy/DOS(快捷键改为 F1-F3) - 删除 VHS 切换器与相关样式(卡片/控件/年份选择/图表等) - DOS 主题统一使用像素字体,减弱发光强度并细化扫描线/闪烁参数 - DOS 闪烁光标改由 WrappedCRTOverlay 渲染,避免全局样式副作用 - 移除热力图 vhs 配色分支
98 lines
1.9 KiB
Vue
98 lines
1.9 KiB
Vue
<template>
|
|
<div class="gameboy-menu select-none">
|
|
<!-- 像素风格菜单框 -->
|
|
<div class="gameboy-menu-box">
|
|
<div class="gameboy-menu-title">SELECT THEME</div>
|
|
<div class="gameboy-menu-items">
|
|
<button
|
|
v-for="t in themes"
|
|
:key="t.value"
|
|
class="gameboy-menu-item"
|
|
:class="{ 'is-active': theme === t.value }"
|
|
@click="selectTheme(t.value)"
|
|
>
|
|
<span class="gameboy-cursor">{{ theme === t.value ? '▶' : ' ' }}</span>
|
|
<span class="gameboy-label">{{ t.label }}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const { theme, setTheme } = useWrappedTheme()
|
|
|
|
const themes = [
|
|
{ value: 'off', label: 'MODERN' },
|
|
{ value: 'gameboy', label: 'GAME BOY' },
|
|
{ value: 'dos', label: 'DOS' }
|
|
]
|
|
|
|
const selectTheme = (value) => {
|
|
setTheme(value)
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.gameboy-menu {
|
|
font-family: 'Press Start 2P', 'Courier New', monospace;
|
|
font-size: 8px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.gameboy-menu-box {
|
|
background: #0f380f;
|
|
border: 3px solid #306230;
|
|
padding: 8px;
|
|
box-shadow:
|
|
inset 2px 2px 0 #9bbc0f,
|
|
inset -2px -2px 0 #0f380f;
|
|
}
|
|
|
|
.gameboy-menu-title {
|
|
color: #9bbc0f;
|
|
text-align: center;
|
|
margin-bottom: 8px;
|
|
padding-bottom: 4px;
|
|
border-bottom: 2px dashed #306230;
|
|
}
|
|
|
|
.gameboy-menu-items {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.gameboy-menu-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 4px 6px;
|
|
color: #9bbc0f;
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: background-color 0.1s;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
.gameboy-menu-item:hover {
|
|
background: #306230;
|
|
}
|
|
|
|
.gameboy-menu-item.is-active {
|
|
color: #8bac0f;
|
|
}
|
|
|
|
.gameboy-cursor {
|
|
width: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.gameboy-label {
|
|
letter-spacing: 1px;
|
|
}
|
|
</style>
|