UI细节调整

This commit is contained in:
kron
2025-06-28 12:03:33 +08:00
parent 9f29a92d3d
commit 72f3013795
12 changed files with 62 additions and 45 deletions

View File

@@ -40,7 +40,7 @@ const timer = ref(null);
onMounted(() => {
timer.value = setInterval(() => {
bgIndex.value = bgIndex.value === 0 ? 1 : 0;
}, 500);
}, 200);
});
onUnmounted(() => {
if (timer.value) {
@@ -89,7 +89,7 @@ onUnmounted(() => {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 5vw;
margin: 0 4vw;
position: relative;
padding: 1vw 0;
}