Skip to content

Commit db3d952

Browse files
bingggclaude
andcommitted
🔧 Fix Chinese translation and dramatically enhance ring animation visibility
Translation Fix: - Add missing Chinese translation for gistImportBtn: '🌐 查看他人分享的会话' - Prevent fallback to untranslated key in Chinese interface Animation Enhancement: - Dramatically increase opacity values: 0.4→0.8, 0.6→0.7, up to 0.8 alpha - Increase ring sizes: 350px→400px, 600px→700px for more presence - Boost animation opacity range: 0.6-1.0 → 0.7-1.0 for stronger visibility - Set outer ring to full opacity (1.0) for maximum impact against black background 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e4c2a49 commit db3d952

2 files changed

Lines changed: 21 additions & 20 deletions

File tree

assets/css/styles.css

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,16 @@ body {
100100
position: absolute;
101101
top: 50%;
102102
left: 50%;
103-
width: 350px;
104-
height: 350px;
103+
width: 400px;
104+
height: 400px;
105105
transform: translate(-50%, -50%);
106106
background:
107107
radial-gradient(
108108
circle at center,
109-
rgba(102, 126, 234, 0.4) 0%,
110-
rgba(147, 197, 253, 0.3) 20%,
111-
rgba(255, 255, 255, 0.25) 40%,
112-
rgba(255, 255, 255, 0.15) 60%,
109+
rgba(102, 126, 234, 0.8) 0%,
110+
rgba(147, 197, 253, 0.6) 20%,
111+
rgba(255, 255, 255, 0.4) 40%,
112+
rgba(255, 255, 255, 0.2) 60%,
113113
transparent 80%
114114
);
115115
border-radius: 50%;
@@ -122,41 +122,41 @@ body {
122122
position: absolute;
123123
top: 50%;
124124
left: 50%;
125-
width: 600px;
126-
height: 600px;
125+
width: 700px;
126+
height: 700px;
127127
transform: translate(-50%, -50%);
128128
background:
129129
radial-gradient(
130130
circle at center,
131131
transparent 0%,
132-
rgba(139, 92, 246, 0.25) 30%,
133-
rgba(167, 139, 250, 0.35) 45%,
134-
rgba(196, 181, 253, 0.2) 55%,
135-
rgba(255, 255, 255, 0.15) 70%,
132+
rgba(139, 92, 246, 0.6) 30%,
133+
rgba(167, 139, 250, 0.7) 45%,
134+
rgba(196, 181, 253, 0.5) 55%,
135+
rgba(255, 255, 255, 0.3) 70%,
136136
transparent 85%
137137
);
138138
border-radius: 50%;
139139
animation: breathingRing 10s ease-in-out infinite reverse;
140140
pointer-events: none;
141-
opacity: 0.9;
141+
opacity: 1.0;
142142
}
143143

144144
@keyframes breathingRing {
145145
0%, 100% {
146-
transform: translate(-50%, -50%) scale(0.7);
147-
opacity: 0.6;
146+
transform: translate(-50%, -50%) scale(0.6);
147+
opacity: 0.7;
148148
}
149149
25% {
150-
transform: translate(-50%, -50%) scale(0.9);
151-
opacity: 0.8;
150+
transform: translate(-50%, -50%) scale(0.85);
151+
opacity: 0.85;
152152
}
153153
50% {
154-
transform: translate(-50%, -50%) scale(1.3);
154+
transform: translate(-50%, -50%) scale(1.4);
155155
opacity: 1.0;
156156
}
157157
75% {
158-
transform: translate(-50%, -50%) scale(1.1);
159-
opacity: 0.9;
158+
transform: translate(-50%, -50%) scale(1.2);
159+
opacity: 0.95;
160160
}
161161
}
162162

assets/js/i18n.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ const LANGUAGES = {
229229
]
230230
},
231231
selectBtn: '📁 选择 .claude 目录',
232+
gistImportBtn: '🌐 查看他人分享的会话',
232233
loading: '正在加载...',
233234
sessionHistory: '会话历史',
234235
searchPlaceholder: '搜索会话...',

0 commit comments

Comments
 (0)