Skip to content

Commit 7f729f4

Browse files
committed
Merge branch 'dev-page-about'
2 parents d37e352 + bd452a1 commit 7f729f4

10 files changed

Lines changed: 6709 additions & 4991 deletions

File tree

app/components/Navigation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ defineProps<{ hidden: boolean }>();
4747
const NavItems = ref([
4848
{ title: '主页', description: '111', path: '/' },
4949
{ title: '组织历程', description: '111', path: '/history' },
50-
{ title: '详细介绍', description: '111', path: '/introduction' },
50+
{ title: '详细介绍', description: '111', path: '/about' },
5151
]);
5252
5353
// 滚动阈值(像素),超过此值切换为“短”样式

app/layouts/article.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="min-h-screen bg-gradient-to-br from-blue-50 via-blue-100 to-indigo-50 relative overflow-hidden">
2+
<div class="min-h-screen bg-linear-to-br from-blue-50 via-blue-100 to-indigo-50 relative overflow-hidden">
33
<!-- 动态粒子背景 -->
44
<div class="absolute inset-0 z-0">
55
<div
@@ -21,11 +21,11 @@
2121

2222
<!-- 动态光晕效果 -->
2323
<div
24-
class="fixed right-10 top-20 h-1/3 w-1/5 bg-gradient-to-r from-blue-200 to-cyan-100 blur-[120px] -z-10 transition-all duration-1000"
24+
class="fixed right-10 top-20 h-1/3 w-1/5 bg-linear-to-r from-blue-200 to-cyan-100 blur-[120px] -z-10 transition-all duration-1000"
2525
:style="`opacity: 0.${count / 2}; transform: translate(${count / 5}px, ${count / 10}px) rotate(${count / 2}deg);`"
2626
/>
2727
<div
28-
class="fixed bottom-20 left-20 h-1/3 w-1/5 bg-gradient-to-r from-indigo-200 to-purple-100 blur-[120px] -z-10 transition-all duration-1000"
28+
class="fixed bottom-20 left-20 h-1/3 w-1/5 bg-linear-to-r from-indigo-200 to-purple-100 blur-[120px] -z-10 transition-all duration-1000"
2929
:style="`opacity: 0.${count / 2}; transform: translate(-${count / 5}px, -${count / 10}px) rotate(-${count / 2}deg);`"
3030
/>
3131

@@ -76,6 +76,7 @@ function particleStyle() {
7676
}
7777
</script>
7878

79+
<!-- cosmo-only-tailwind-disable -->
7980
<style scoped>
8081
/* 自定义动画效果 */
8182
@keyframes float {

0 commit comments

Comments
 (0)