继续优化探索页UI

This commit is contained in:
madrays
2025-04-08 20:43:43 +08:00
parent 89e4a68a03
commit db6c3ea36c
2 changed files with 386 additions and 274 deletions

View File

@@ -1,27 +1,29 @@
<script lang="ts" setup> <script lang="ts" setup>
import SlideViewTitle from '@/components/slide/SlideViewTitle.vue' import SlideViewTitle from '@/components/slide/SlideViewTitle.vue'
import { ref, onMounted, onUnmounted, inject, computed } from 'vue';
// 元素 // 元素
const slideview_content = ref() const slideview_content = ref<HTMLElement | null>(null);
const sliderContainer = ref() const sliderContainer = ref<HTMLElement | null>(null);
// 分页切换状态: 0-左边不可用 1-两边可用 2-右边不可用 3-两边都不可用 // 分页切换状态: 0-左边不可用 1-两边可用 2-右边不可用 3-两边都不可用
const disabled = ref(0) const disabled = ref(0);
// 记录滚动值 // 记录滚动值
const slideview_scrollLeft = ref(0) const slideview_scrollLeft = ref(0);
// 所有卡片数量 // 所有卡片数量
let slide_card_length: number let slide_card_length: number;
// 卡片间距 // 卡片间距
let slide_gap_px: number let slide_gap_px: number;
// 卡片宽度 // 卡片宽度
let card_width: number let card_width: number;
// 容器最多显示N张卡片 // 容器最多显示N张卡片
let card_max: number let card_max: number;
// 当前定位 // 当前定位
let card_current: number let card_current: number;
// 是否鼠标悬停在容器上
const isHovering = ref(false)
// 获取传入的链接地址 // 获取传入的链接地址
const props: any = inject('rankingPropsKey', { linkurl: '', title: '' }) const props: any = inject('rankingPropsKey', { linkurl: '', title: '' });
const isScrolling = ref(false);
let scrollTimeout: ReturnType<typeof setTimeout> | null = null;
const scrollTimeoutDuration = 1500; // 滚动停止后延迟时间 (ms)
// 分页切换 // 分页切换
function slideNext(next: boolean) { function slideNext(next: boolean) {
@@ -29,18 +31,27 @@ function slideNext(next: boolean) {
if (next) { if (next) {
const card_index = card_current + card_max const card_index = card_current + card_max
run_to_left_px = card_index * card_width run_to_left_px = card_index * card_width
if (run_to_left_px >= slideview_content.value.scrollWidth - slideview_content.value.clientWidth) if (run_to_left_px >= slideview_content.value!.scrollWidth - slideview_content.value!.clientWidth)
run_to_left_px = slideview_content.value.scrollWidth - slideview_content.value.clientWidth run_to_left_px = slideview_content.value!.scrollWidth - slideview_content.value!.clientWidth
} else { } else {
const card_index = card_current - card_max const card_index = card_current - card_max
run_to_left_px = card_index * card_width run_to_left_px = card_index * card_width
if (run_to_left_px <= 0) run_to_left_px = 0 if (run_to_left_px <= 0) run_to_left_px = 0
} }
slideview_content.value.scrollTo({ slideview_content.value!.scrollTo({
top: 0, top: 0,
left: run_to_left_px, left: run_to_left_px,
behavior: 'smooth', behavior: 'smooth',
}) })
// 点击后强制显示并重置计时器
isScrolling.value = true;
if (scrollTimeout) {
clearTimeout(scrollTimeout);
}
scrollTimeout = setTimeout(() => {
isScrolling.value = false;
}, scrollTimeoutDuration);
} }
// 计算最大显示数量 // 计算最大显示数量
@@ -54,8 +65,25 @@ function countMaxNumber() {
countDisabled() countDisabled()
} }
// 修改分页切换按钮状态 // 修改分页切换按钮状态 & 处理滚动状态
function countDisabled() { function handleContentScroll() {
if (!slideview_content.value) return;
// 更新按钮禁用状态
countDisabled();
// 更新滚动状态并重置计时器
isScrolling.value = true;
if (scrollTimeout) {
clearTimeout(scrollTimeout);
}
scrollTimeout = setTimeout(() => {
isScrolling.value = false;
}, scrollTimeoutDuration); // 使用常量
}
// 原始的 countDisabled 逻辑,现在由 handleContentScroll 调用
function countDisabled() {
if (!slideview_content.value) return;
slideview_scrollLeft.value = slideview_content.value.scrollLeft slideview_scrollLeft.value = slideview_content.value.scrollLeft
card_current = card_current =
slideview_content.value.scrollLeft === 0 slideview_content.value.scrollLeft === 0
@@ -71,16 +99,6 @@ function countDisabled() {
else disabled.value = 1 else disabled.value = 1
} }
// 处理鼠标进入
function handleMouseEnter() {
isHovering.value = true
}
// 处理鼠标离开
function handleMouseLeave() {
isHovering.value = false
}
// 组件加载完成 // 组件加载完成
onMounted(() => { onMounted(() => {
// 初次获取元素参数 // 初次获取元素参数
@@ -96,13 +114,17 @@ onUnmounted(() => {
onActivated(() => { onActivated(() => {
if (slideview_scrollLeft.value !== 0) { if (slideview_scrollLeft.value !== 0) {
slideview_content.value.scrollLeft = slideview_scrollLeft.value slideview_content.value!.scrollLeft = slideview_scrollLeft.value
} }
}) })
</script> </script>
<template> <template>
<div ref="sliderContainer" class="slider-container" @mouseenter="handleMouseEnter" @mouseleave="handleMouseLeave"> <div
ref="sliderContainer"
class="slider-container"
:class="{ 'is-scrolling': isScrolling }"
>
<div class="slider-header"> <div class="slider-header">
<slot name="title"> <slot name="title">
<SlideViewTitle /> <SlideViewTitle />
@@ -119,7 +141,12 @@ onActivated(() => {
<div class="slider-content-wrapper"> <div class="slider-content-wrapper">
<div class="slider-content-container"> <div class="slider-content-container">
<div ref="slideview_content" class="slider-content" tabindex="0" @scroll="countDisabled"> <div
ref="slideview_content"
class="slider-content"
tabindex="0"
@scroll="handleContentScroll"
>
<slot name="content" /> <slot name="content" />
</div> </div>
</div> </div>
@@ -128,7 +155,7 @@ onActivated(() => {
<button <button
class="nav-button nav-button-left" class="nav-button nav-button-left"
@click.stop="slideNext(false)" @click.stop="slideNext(false)"
v-show="isHovering && disabled !== 0 && disabled !== 3" v-show="disabled !== 0 && disabled !== 3"
> >
<svg width="24" height="24" viewBox="0 0 24 24"> <svg width="24" height="24" viewBox="0 0 24 24">
<path d="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z" /> <path d="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z" />
@@ -139,7 +166,7 @@ onActivated(() => {
<button <button
class="nav-button nav-button-right" class="nav-button nav-button-right"
@click.stop="slideNext(true)" @click.stop="slideNext(true)"
v-show="isHovering && disabled !== 2 && disabled !== 3" v-show="disabled !== 2 && disabled !== 3"
> >
<svg width="24" height="24" viewBox="0 0 24 24"> <svg width="24" height="24" viewBox="0 0 24 24">
<path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z" /> <path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z" />
@@ -172,30 +199,33 @@ onActivated(() => {
.view-all-button { .view-all-button {
.arrow-svg { .arrow-svg {
fill: currentcolor; fill: currentColor;
transition: transform 0.3s ease; transition: transform 0.3s ease;
margin-left: 2px;
} }
display: inline-flex; display: inline-flex;
flex-shrink: 0; flex-shrink: 0;
align-items: center; align-items: center;
border-radius: 16px; border-radius: 8px;
background-color: rgba(var(--v-theme-primary), 0.1); padding: 5px 12px;
background-color: transparent;
border: 1px solid rgba(var(--v-theme-primary), 0.3);
color: rgb(var(--v-theme-primary)); color: rgb(var(--v-theme-primary));
font-size: 0.85rem; font-size: 0.85rem;
font-weight: 500; font-weight: 500;
padding-block: 4px;
padding-inline: 10px;
text-decoration: none; text-decoration: none;
transition: all 0.25s ease; transition: all 0.25s ease;
box-shadow: none;
&:hover { &:hover {
background-color: rgba(var(--v-theme-primary), 0.15); background-color: rgba(var(--v-theme-primary), 0.08);
box-shadow: 0 2px 8px rgba(var(--v-theme-primary), 0.1); border-color: rgba(var(--v-theme-primary), 0.5);
transform: translateY(-1px); transform: translateY(-1px);
box-shadow: 0 3px 8px rgba(var(--v-theme-primary), 0.1);
.arrow-svg { .arrow-svg {
transform: translateX(2px); transform: translateX(3px);
} }
} }
@@ -217,38 +247,43 @@ onActivated(() => {
.nav-button { .nav-button {
position: absolute; position: absolute;
z-index: 20; top: 50%;
transform: translateY(-50%);
width: 36px;
height: 36px;
border-radius: 10px;
background-color: rgba(var(--v-theme-background), 0.8);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(var(--v-theme-on-surface), 0.08);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
padding: 0;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 0;
border: 1px solid rgba(var(--v-theme-on-surface), 0.1);
border-radius: 50%;
backdrop-filter: blur(5px);
background-color: rgba(var(--v-theme-surface), 0.9);
block-size: 38px;
cursor: pointer; cursor: pointer;
inline-size: 38px; z-index: 20;
inset-block-start: 50%; color: rgb(var(--v-theme-on-surface));
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
transform: translateY(-50%); transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease,
box-shadow 0.3s ease;
svg { svg {
block-size: 22px; fill: currentColor;
fill: rgb(var(--v-theme-on-surface)); opacity: 0.7;
inline-size: 22px;
opacity: 0.8;
transition: all 0.3s ease; transition: all 0.3s ease;
width: 22px;
height: 22px;
filter: none;
} }
&:hover { &:hover {
background-color: rgba(var(--v-theme-background), 0.95);
transform: translateY(-50%) scale(1.05);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
border-color: rgba(var(--v-theme-on-surface), 0.15); border-color: rgba(var(--v-theme-on-surface), 0.15);
background-color: rgba(var(--v-theme-surface), 1); color: rgb(var(--v-theme-primary));
transform: translateY(-50%) scale(1.1);
svg { svg {
opacity: 1; opacity: 1;
} }
@@ -256,11 +291,11 @@ onActivated(() => {
} }
.nav-button-left { .nav-button-left {
inset-inline-start: -14px; // 半径 left: 8px;
} }
.nav-button-right { .nav-button-right {
inset-inline-end: -14px; // 半径 right: 8px;
} }
.slider-content { .slider-content {
@@ -282,14 +317,25 @@ onActivated(() => {
} }
} }
.slider-container:hover .nav-button, // 触摸设备:滚动时显示 (通过 JS 添加的类控制)
.slider-container:hover .nav-button[style*='display: none;'] ~ .nav-button { // 这个规则会在不支持 hover 的设备上生效
.slider-container.is-scrolling .nav-button {
opacity: 1; opacity: 1;
pointer-events: auto; pointer-events: auto;
} }
.nav-button[style*='display: none;'] { // 桌面设备:悬停时显示
opacity: 0 !important; @media (hover: hover) {
pointer-events: none !important; .slider-container:hover .nav-button {
// 这个规则会覆盖 .is-scrolling 的效果 (如果同时存在)
// 或者在非 scrolling 状态下hover 时也能显示
opacity: 1;
pointer-events: auto;
}
// 在 hover 设备上,即使在滚动,如果鼠标不悬停,按钮也应该隐藏
// 因此,基础 .nav-button 的 opacity: 0 规则在这里仍然是必要的
// (之前错误地以为 hover 会完全覆盖,但滚动时 class 和 hover 可能同时存在)
// .nav-button { opacity: 0; pointer-events: none; } // 这行其实不需要重复,默认就是这样
} }
</style> </style>

View File

@@ -2,6 +2,7 @@
import api from '@/api' import api from '@/api'
import { RecommendSource } from '@/api/types' import { RecommendSource } from '@/api/types'
import MediaCardSlideView from '@/views/discover/MediaCardSlideView.vue' import MediaCardSlideView from '@/views/discover/MediaCardSlideView.vue'
import { ref, onMounted, onUnmounted, computed, reactive, watch, nextTick } from 'vue';
// 当前选择的分类 // 当前选择的分类
const currentCategory = ref('全部') const currentCategory = ref('全部')
@@ -199,12 +200,74 @@ const categoryIcons: Record<CategoryType, string> = {
榜单: 'mdi-trophy', 榜单: 'mdi-trophy',
} }
// 控制回到顶部按钮的可见性
const showScrollToTop = ref(false);
const scrollThreshold = 200; // 滚动多少像素后显示按钮
// 滚动事件处理函数
const handleScroll = () => {
showScrollToTop.value = window.scrollY > scrollThreshold;
};
// 回到顶部函数 (如果需要可以从VScrollToTopBtn或其他地方引入)
const scrollToTop = () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
};
// Ref for the tabs container
const tabsContainerRef = ref<HTMLElement | null>(null);
// State for showing the scroll indicator
const showTabsScrollIndicator = ref(false);
// Function to check and update the indicator state
const updateTabsIndicator = () => {
const el = tabsContainerRef.value;
if (!el) return;
const tolerance = 1; // Allow 1px tolerance
const hasOverflow = el.scrollWidth > el.clientWidth + tolerance;
const isScrolledToEnd = el.scrollLeft + el.clientWidth >= el.scrollWidth - tolerance;
showTabsScrollIndicator.value = hasOverflow && !isScrolledToEnd;
};
// Debounce resize handler
let resizeTimeout: ReturnType<typeof setTimeout> | null = null;
const handleResize = () => {
if (resizeTimeout) clearTimeout(resizeTimeout);
resizeTimeout = setTimeout(() => {
updateTabsIndicator();
}, 150);
};
onBeforeMount(async () => { onBeforeMount(async () => {
await loadConfig() await loadConfig()
}) })
onMounted(async () => { onMounted(async () => {
await loadExtraRecommendSources() await loadExtraRecommendSources()
// Add scroll event listener
window.addEventListener('scroll', handleScroll);
// Initial check for scroll-to-top
handleScroll();
// Add resize listener for tabs indicator
window.addEventListener('resize', handleResize);
// Initial check for tabs indicator after DOM update
await nextTick(); // Ensure element is rendered
updateTabsIndicator();
// Listen for scroll events specifically on the tabs container
tabsContainerRef.value?.addEventListener('scroll', updateTabsIndicator, { passive: true });
})
onUnmounted(() => {
// Remove scroll event listener
window.removeEventListener('scroll', handleScroll);
// Remove resize listener
window.removeEventListener('resize', handleResize);
// Remove tabs scroll listener
tabsContainerRef.value?.removeEventListener('scroll', updateTabsIndicator);
}) })
onActivated(async () => { onActivated(async () => {
@@ -225,7 +288,11 @@ watch(currentCategory, () => {
<div class="mp-recommend"> <div class="mp-recommend">
<!-- 页面顶部控制栏 --> <!-- 页面顶部控制栏 -->
<div class="recommend-header"> <div class="recommend-header">
<div class="header-tabs"> <div
ref="tabsContainerRef"
class="header-tabs"
:class="{ 'show-indicator': showTabsScrollIndicator }"
>
<div <div
v-for="(category, idx) in ['全部', '电影', '电视剧', '动漫', '榜单']" v-for="(category, idx) in ['全部', '电影', '电视剧', '动漫', '榜单']"
:key="idx" :key="idx"
@@ -238,14 +305,14 @@ watch(currentCategory, () => {
</div> </div>
</div> </div>
<button class="tune-button" @click="dialog = true"> <VBtn
<div class="tune-icon"> icon="mdi-tune"
<span></span> variant="text"
<span></span> color="primary"
<span></span> size="default"
</div> class="settings-icon-button"
<span class="tune-text">显示设置</span> @click="dialog = true"
</button> />
</div> </div>
<!-- 滚动内容区域 --> <!-- 滚动内容区域 -->
@@ -262,7 +329,7 @@ watch(currentCategory, () => {
</div> </div>
<!-- 设置面板 --> <!-- 设置面板 -->
<VDialog v-model="dialog" width="40rem" class="settings-dialog" scrollable> <VDialog v-model="dialog" width="500" class="settings-dialog" scrollable>
<VCard class="settings-card"> <VCard class="settings-card">
<VCardItem class="settings-card-header"> <VCardItem class="settings-card-header">
<VCardTitle> <VCardTitle>
@@ -316,7 +383,19 @@ watch(currentCategory, () => {
</VDialog> </VDialog>
<!-- 快速滚动到顶部按钮 --> <!-- 快速滚动到顶部按钮 -->
<VScrollToTopBtn /> <div class="global-action-buttons">
<Transition name="scroll-fade">
<button
v-show="showScrollToTop"
class="global-action-button"
@click="scrollToTop"
>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 14L12 9L17 14" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</Transition>
</div>
</div> </div>
</template> </template>
@@ -324,99 +403,138 @@ watch(currentCategory, () => {
.mp-recommend { .mp-recommend {
position: relative; position: relative;
padding: 0; padding: 0;
max-inline-size: 100%; max-width: 100%;
} }
.recommend-header { .recommend-header {
position: sticky; position: sticky;
top: 0;
z-index: 10; z-index: 10;
display: flex; display: flex;
align-items: center;
justify-content: space-between; justify-content: space-between;
align-items: center;
padding: 8px 16px;
margin-bottom: 16px;
background-color: rgba(var(--v-theme-background), 0.8);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
background-color: rgba(var(--v-theme-primary), 0.02); -webkit-backdrop-filter: blur(10px);
border-block-end: 1px solid rgba(var(--v-theme-primary), 0.1); border-bottom: 1px solid rgba(var(--v-theme-on-surface), 0.05);
inset-block-start: 0; gap: 16px; // 为按钮留出空间
margin-block-end: 16px;
padding-block: 12px;
padding-inline: 16px;
} }
.header-tabs { .header-tabs {
position: relative; // Needed for pseudo-element positioning
display: flex; display: flex;
padding: 4px;
gap: 12px; gap: 12px;
overflow-x: auto; overflow-x: auto;
scrollbar-width: none; scrollbar-width: none;
padding: 4px 0;
flex-grow: 1;
min-width: 0;
// Add padding-right to make space for the indicator visually
padding-right: 20px;
// Clip content that overflows, useful with padding
-webkit-mask-image: linear-gradient(to right, black 95%, transparent 100%);
mask-image: linear-gradient(to right, black 95%, transparent 100%);
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; display: none;
} }
}
// Gradient indicator pseudo-element
.header-tab-icon { &::after {
color: rgba(var(--v-theme-on-background), 0.6); content: '';
margin-inline-end: 6px; position: absolute;
transition: color 0.2s ease; top: 0;
bottom: 0;
right: 0;
width: 40px; // Width of the fade effect
background: linear-gradient(to left, rgba(var(--v-theme-background), 1) 30%, transparent);
pointer-events: none; // Allow interaction with content behind it
opacity: 0; // Hidden by default
transition: opacity 0.2s ease-in-out;
z-index: 1; // Ensure it's above the tabs but below other header elements if needed
}
// Show the indicator when the class is present
&.show-indicator::after {
opacity: 1;
}
} }
.header-tab { .header-tab {
position: relative;
display: flex; display: flex;
align-items: center; align-items: center;
padding: 6px 14px;
border-radius: 20px; border-radius: 20px;
background-color: transparent;
color: rgba(var(--v-theme-on-background), 0.7);
cursor: pointer;
font-size: 0.9rem;
font-weight: 600; font-weight: 600;
padding-block: 6px; font-size: 0.9rem;
padding-inline: 14px; cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap; white-space: nowrap;
transition: all 0.2s ease;
background-color: transparent;
position: relative;
color: rgba(var(--v-theme-on-background), 0.7);
&::after { &::after {
position: absolute;
border-radius: 3px;
background-color: rgb(var(--v-theme-primary));
block-size: 3px;
content: ''; content: '';
inline-size: 70%; position: absolute;
inset-block-end: -4px; bottom: -4px;
inset-inline-start: 50%; left: 50%;
transform: translateX(-50%) scaleX(0); transform: translateX(-50%) scaleX(0);
width: 70%;
height: 3px;
background-color: rgb(var(--v-theme-primary));
border-radius: 3px;
transition: transform 0.2s ease; transition: transform 0.2s ease;
} }
&.active { &.active {
color: rgb(var(--v-theme-primary)); color: rgb(var(--v-theme-primary));
&::after { &::after {
transform: translateX(-50%) scaleX(1); transform: translateX(-50%) scaleX(1);
} }
.header-tab-icon { .header-tab-icon {
color: rgb(var(--v-theme-primary)); color: rgb(var(--v-theme-primary));
} }
} }
&:hover:not(.active) { &:hover:not(.active) {
background-color: rgba(var(--v-theme-primary), 0.05);
color: rgba(var(--v-theme-on-background), 1); color: rgba(var(--v-theme-on-background), 1);
background-color: rgba(var(--v-theme-primary), 0.05);
} }
} }
.settings-btn { .header-tab-icon {
border-radius: 50%; margin-right: 6px;
block-size: 48px; transition: color 0.2s ease;
inline-size: 48px; color: rgba(var(--v-theme-on-background), 0.6);
min-inline-size: auto; }
.settings-icon-button {
min-width: auto;
flex-shrink: 0;
} }
.recommend-content { .recommend-content {
min-block-size: 300px; padding: 0 16px;
padding-block: 0; }
padding-inline: 8px;
/* Fade transition for content groups */
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.content-group {
margin-bottom: 24px;
transition: opacity 0.3s ease;
} }
.empty-category { .empty-category {
@@ -424,197 +542,145 @@ watch(currentCategory, () => {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
border: 1px dashed rgba(var(--v-theme-on-surface), 0.1); padding: 40px;
border-radius: 12px; text-align: center;
background-color: rgba(var(--v-theme-surface), 0.5); color: rgba(var(--v-theme-on-surface), 0.6);
block-size: 300px;
margin-block: 20px;
margin-inline: 0;
} }
.empty-icon { .empty-icon {
margin-block-end: 12px; margin-bottom: 16px;
opacity: 0.5; opacity: 0.5;
} }
.empty-text { .empty-text {
color: rgba(var(--v-theme-on-surface), 0.6); margin-bottom: 16px;
margin-block-end: 16px; font-size: 1rem;
} }
.content-group { /* Settings Dialog Styles */
margin-block-end: 24px; .settings-dialog .v-card {
}
.settings-card {
overflow: hidden;
border-radius: 12px; border-radius: 12px;
} }
.settings-card-header { .settings-card-header {
background-color: rgba(var(--v-theme-primary), 0.03); padding: 16px 20px;
} }
.settings-hint { .settings-hint {
color: rgba(var(--v-theme-on-surface), 0.6);
font-size: 0.9rem; font-size: 0.9rem;
margin-block-end: 16px; color: rgba(var(--v-theme-on-surface), 0.7);
margin-bottom: 16px;
} }
.settings-grid { .settings-grid {
display: grid; display: grid;
gap: 8px; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.setting-item {
border: 1px solid rgba(var(--v-theme-on-surface), 0.1);
border-radius: 8px;
padding: 10px 12px;
cursor: pointer;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
background-color: rgba(var(--v-theme-surface-variant), 0.3);
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background-color: transparent;
transition: background-color 0.3s ease;
}
&.电影::before { background-color: #4CAF50; } // Green
&.电视剧::before { background-color: #2196F3; } // Blue
&.动漫::before { background-color: #FF9800; } // Orange
&.榜单::before { background-color: #9C27B0; } // Purple
&:hover {
background-color: rgba(var(--v-theme-surface-variant), 0.6);
border-color: rgba(var(--v-theme-on-surface), 0.15);
}
&.enabled {
border-color: rgba(var(--v-theme-primary), 0.5);
background-color: rgba(var(--v-theme-primary), 0.05);
.setting-label {
color: rgb(var(--v-theme-primary));
font-weight: 500;
}
}
} }
.setting-item-inner { .setting-item-inner {
display: flex; display: flex;
align-items: center; align-items: center;
border: 1px solid rgba(var(--v-theme-on-surface), 0.1);
border-radius: 8px;
background-color: rgba(var(--v-theme-surface), 1);
padding-block: 10px;
padding-inline: 12px;
transition: all 0.2s ease;
&:hover {
transform: translateY(-2px);
}
}
.setting-item {
cursor: pointer;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
&.enabled {
.setting-item-inner {
border-color: rgba(var(--v-theme-primary), 0.2);
background-color: rgba(var(--v-theme-primary), 0.08);
}
}
&.电影 .setting-item-inner {
border-inline-start: 3px solid #3b82f6;
}
&.电视剧 .setting-item-inner {
border-inline-start: 3px solid #6366f1;
}
&.动漫 .setting-item-inner {
border-inline-start: 3px solid #a855f7;
}
&.榜单 .setting-item-inner {
border-inline-start: 3px solid #f59e0b;
}
} }
.setting-check { .setting-check {
margin-inline-end: 8px; margin-right: 8px;
} }
.setting-label { .setting-label {
overflow: hidden;
font-size: 0.9rem; font-size: 0.9rem;
text-overflow: ellipsis; color: rgba(var(--v-theme-on-surface), 0.8);
white-space: nowrap; transition: color 0.2s ease;
} }
.fade-enter-active, /* Global Action Button Styles (FAB) */
.fade-leave-active { .global-action-buttons {
transition: opacity 0.5s ease, transform 0.5s ease; position: fixed;
} bottom: 30px;
right: 30px;
.fade-enter-from, z-index: 100;
.fade-leave-to {
opacity: 0;
transform: translateY(20px);
}
.fade-move {
transition: transform 0.5s ease;
}
.fade-transition {
animation: fadeInOut 0.5s ease;
}
@keyframes fadeinout {
0% {
opacity: 0.5;
transform: translateY(10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.tune-button {
display: flex; display: flex;
flex-direction: column;
gap: 16px;
}
.global-action-button {
width: 44px;
height: 44px;
background-color: rgba(var(--v-theme-background), 0.8);
border: 1px solid rgba(var(--v-theme-on-surface), 0.05);
border-radius: 50%;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
display: flex;
justify-content: center;
align-items: center; align-items: center;
border: none;
border-radius: 30px;
background: rgba(var(--v-theme-primary), 0.1);
color: rgb(var(--v-theme-primary));
cursor: pointer; cursor: pointer;
padding-block: 8px; color: rgb(var(--v-theme-on-surface));
padding-inline: 16px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
transition: all 0.3s ease;
&:hover { &:hover {
background: rgba(var(--v-theme-primary), 0.2); background-color: rgba(var(--v-theme-background), 0.95);
transform: translateY(-2px); transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
color: rgb(var(--v-theme-primary));
} }
.tune-icon { svg {
display: flex; transition: all 0.3s ease;
flex-direction: column; width: 20px;
justify-content: space-between; height: 20px;
block-size: 16px;
inline-size: 16px;
margin-inline-end: 8px;
span {
display: block;
border-radius: 2px;
background-color: rgb(var(--v-theme-primary));
block-size: 2px;
transition: all 0.3s ease;
&:nth-child(1) {
inline-size: 60%;
}
&:nth-child(2) {
inline-size: 80%;
}
&:nth-child(3) {
inline-size: 40%;
}
}
}
.tune-text {
font-size: 0.9rem;
font-weight: 500;
}
&:hover .tune-icon span {
&:nth-child(1) {
inline-size: 100%;
}
&:nth-child(2) {
inline-size: 60%;
}
&:nth-child(3) {
inline-size: 80%;
}
} }
} }
/* Remove old tune button styles if they exist */
.tune-button {
display: none; // Hide the old button definitively
}
</style> </style>