File size: 14,521 Bytes
8ede856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | <template>
<div class="live-orb-container" ref="containerRef" :class="{ 'dark': isDark }" :style="styleVars">
<div class="live-orb">
</div>
<div class="eyes-container">
<div class="eye" :class="{ 'blink': isBlinking, 'nervous': nervousMode }">
<!-- Nervous Mode > -->
<div v-if="nervousMode" class="nervous-eye-content">
<svg viewBox="0 0 30 60" width="100%" height="100%">
<path d="M 0 10 L 30 30 L 0 50" fill="none" stroke="#7d80e4" stroke-width="8" />
</svg>
</div>
<!-- Code Mode Layer -->
<transition name="fade">
<div v-if="codeMode && !nervousMode" class="code-rain-container">
<div v-for="(col, i) in codeColumns" :key="i" class="code-column" :style="col.style">
{{ col.content }}
</div>
</div>
</transition>
</div>
<div class="eye" :class="{ 'blink': isBlinking, 'nervous': nervousMode }">
<!-- Nervous Mode < -->
<div v-if="nervousMode" class="nervous-eye-content">
<svg viewBox="0 0 30 60" width="100%" height="100%">
<path d="M 30 10 L 0 30 L 30 50" fill="none" stroke="#7d80e4" stroke-width="8" />
</svg>
</div>
<!-- Code Mode Layer -->
<transition name="fade">
<div v-if="codeMode && !nervousMode" class="code-rain-container">
<div v-for="(col, i) in codeColumns" :key="i" class="code-column" :style="col.style">
{{ col.content }}
</div>
</div>
</transition>
</div>
</div>
<!-- Hair Accessory Star -->
<div class="accessory-star">
<svg viewBox="0 0 24 24" width="100%" height="100%">
<path d="M12 2l2.4 7.2h7.6l-6 4.8 2.4 7.2-6-4.8-6 4.8 2.4-7.2-6-4.8h7.6z"
fill="rgba(125, 128, 228, 0.4)" stroke="rgba(180, 182, 255, 0.6)" stroke-width="3"
stroke-linejoin="round" />
</svg>
</div>
</div>
</template>
<script setup lang="ts">
import { computed, onMounted, onBeforeUnmount, ref, watch } from 'vue';
const props = defineProps<{
energy: number; // 0.0 - 1.0
mode: 'idle' | 'listening' | 'speaking' | 'processing';
isDark?: boolean;
codeMode?: boolean;
nervousMode?: boolean;
}>();
// 内部状态
const containerRef = ref<HTMLElement | null>(null);
const currentAngle = ref(Math.random() * 360);
const smoothedSpeed = ref(0.2); // 初始速度
const currentScale = ref(1.0); // 当前缩放
const isBlinking = ref(false); // 是否正在眨眼
// 眼睛注视偏移
const eyeOffset = ref({ x: 0, y: 0 });
const targetEyeOffset = { x: 0, y: 0 };
let animationFrameId: number;
let blinkTimeoutId: any;
// 颜色配置
const colorConfigs = {
idle: {
c1: "rgba(100, 100, 255, 0.6)", // 柔和蓝
c2: "rgba(200, 100, 255, 0.6)", // 柔和紫
c3: "rgba(100, 200, 255, 0.6)", // 柔和青
},
listening: { // 用户说话 - 活跃的蓝色系
c1: "rgba(60, 130, 246, 0.8)", // 亮蓝
c2: "rgba(34, 211, 238, 0.8)", // 青色
c3: "rgba(147, 51, 234, 0.8)", // 紫色
},
speaking: { // Bot 说话 - 活跃的紫红色系
c1: "rgba(236, 72, 153, 0.8)", // 粉红
c2: "rgba(168, 85, 247, 0.8)", // 紫色
c3: "rgba(244, 63, 94, 0.8)", // 玫瑰红
},
processing: { // 处理中 - 优雅的青/白/紫流转
c1: "rgba(255, 255, 255, 0.6)", // 纯净白
c2: "rgba(168, 85, 247, 0.6)", // 神秘紫
c3: "rgba(34, 211, 238, 0.6)", // 智慧青
}
};
// 动画逻辑
const animate = () => {
// 基础速度
let targetSpeed = 0.1; // idle - 非常慢的流动
if (props.mode === 'processing') targetSpeed = 0.3; // 思考时稍微活跃
else if (props.mode === 'listening') targetSpeed = 0.2; // 倾听时轻微波动
else if (props.mode === 'speaking') targetSpeed = 0.4; // 说话时稍快
// 能量影响速度:能量越高转得越快,但也减弱影响系数
targetSpeed += (props.energy * 0.4);
// 速度平滑插值 (Lerp),避免旋转速度突变
smoothedSpeed.value += (targetSpeed - smoothedSpeed.value) * 0.05;
// 让角度无限累加,不要取模
currentAngle.value = currentAngle.value + smoothedSpeed.value;
// 计算目标缩放
let targetScale = 1.0;
const e = Math.max(0, Math.min(1, props.energy));
targetScale += e * 0.15; // 基础能量缩放
// Processing 模式下的呼吸效果
if (props.mode === 'processing') {
const breathing = (Math.sin(Date.now() / 800 * Math.PI) + 1) * 0.03;
targetScale += breathing;
}
// 缩放平滑插值
currentScale.value += (targetScale - currentScale.value) * 0.1;
// 眼睛偏移平滑插值
eyeOffset.value.x += (targetEyeOffset.x - eyeOffset.value.x) * 0.1;
eyeOffset.value.y += (targetEyeOffset.y - eyeOffset.value.y) * 0.1;
animationFrameId = requestAnimationFrame(animate);
};
const handleMouseMove = (e: MouseEvent) => {
if (!containerRef.value) return;
const rect = containerRef.value.getBoundingClientRect();
const centerX = rect.left + rect.width / 2;
const centerY = rect.top + rect.height / 2;
// 鼠标相对于中心的偏移
const dx = e.clientX - centerX;
const dy = e.clientY - centerY;
// 计算距离和角度
const dist = Math.sqrt(dx * dx + dy * dy);
const maxDist = Math.min(window.innerWidth, window.innerHeight) / 2;
// 限制最大移动范围(像素)
const maxEyeMove = 20;
// 归一化距离因子 (0 ~ 1)
const factor = Math.min(dist / maxDist, 1);
const angle = Math.atan2(dy, dx);
targetEyeOffset.x = Math.cos(angle) * factor * maxEyeMove;
targetEyeOffset.y = Math.sin(angle) * factor * maxEyeMove;
};
// Code Mode Helpers
const codeColumns = ref<Array<{ content: string, style: any }>>([]);
onMounted(() => {
animationFrameId = requestAnimationFrame(animate);
scheduleBlink();
window.addEventListener('mousemove', handleMouseMove);
// Code Rain Generator
const chars = '01{}<>;/[]*+-~^QWERTYUIOPASDFGHJKLZXCVBNM';
const cols = 10;
for (let i = 0; i < cols; i++) {
let content = '';
for (let j = 0; j < 20; j++) {
// 有概率生成空行,增加呼吸感
if (Math.random() > 0.7) {
content += '\n';
} else {
content += chars[Math.floor(Math.random() * chars.length)] + '\n';
}
}
// Repeat once to make it seamless
content += content;
// Partition distribution to avoid overlap
const section = 100 / cols;
// Randomly in the respective areas, leaving some margin
const left = i * section + Math.random() * (section * 0.6);
codeColumns.value.push({
content,
style: {
left: `${left}%`,
animationDuration: `${0.5 + Math.random() * 2.2}s`,
animationDelay: `-${Math.random() * 2}s`,
fontSize: `${8 + Math.random() * 4}px`, // 8-12px
opacity: 0.3 + Math.random() * 0.5,
}
});
}
});
onBeforeUnmount(() => {
cancelAnimationFrame(animationFrameId);
clearTimeout(blinkTimeoutId);
window.removeEventListener('mousemove', handleMouseMove);
});
// 眨眼逻辑
const scheduleBlink = () => {
const delay = Math.random() * 4000 + 2000; // 2s - 6s 随机间隔
blinkTimeoutId = setTimeout(() => {
triggerBlink();
scheduleBlink();
}, delay);
};
const triggerBlink = () => {
if (props.nervousMode) return;
isBlinking.value = true;
setTimeout(() => {
isBlinking.value = false;
}, 150); // 眨眼持续 150ms
};
const styleVars = computed(() => {
const baseSize = 250;
const blurAmount = Math.max(baseSize * 0.04, 10);
const contrastAmount = Math.max(baseSize * 0.003, 1.2);
const colors = colorConfigs[props.mode] || colorConfigs.idle;
return {
'--size': `${baseSize}px`,
'--scale': currentScale.value,
'--angle': `${currentAngle.value}deg`,
'--c1': colors.c1,
'--c2': colors.c2,
'--c3': colors.c3,
'--blur-amount': `${blurAmount}px`,
'--contrast-amount': contrastAmount,
'--eye-x': `${eyeOffset.value.x}px`,
'--eye-y': `${eyeOffset.value.y}px`,
} as Record<string, string | number>;
});
</script>
<style scoped>
/* 注册 CSS 变量以支持动画插值 */
@property --c1 {
syntax: "<color>";
inherits: true;
initial-value: rgba(0, 0, 0, 0);
}
@property --c2 {
syntax: "<color>";
inherits: true;
initial-value: rgba(0, 0, 0, 0);
}
@property --c3 {
syntax: "<color>";
inherits: true;
initial-value: rgba(0, 0, 0, 0);
}
/* --angle 不需要注册为 property 也能在 JS 中更新,但注册更规范 */
@property --angle {
syntax: "<angle>";
inherits: true;
initial-value: 0deg;
}
.live-orb-container {
width: var(--size);
height: var(--size);
position: relative;
display: flex;
align-items: center;
justify-content: center;
transform: scale(var(--scale));
/* 增加 transition 时间,让缩放更柔和 */
transition: transform 0.2s ease-out,
--c1 1s ease,
--c2 1s ease,
--c3 1s ease;
}
.live-orb {
width: 100%;
height: 100%;
display: grid;
grid-template-areas: "stack";
overflow: hidden;
border-radius: 50%;
position: relative;
background: radial-gradient(circle,
rgba(0, 0, 0, 0.05) 0%,
rgba(0, 0, 0, 0.02) 30%,
transparent 70%);
transition: all 0.5s ease;
}
.dark .live-orb {
background: radial-gradient(circle,
rgba(255, 255, 255, 0.1) 0%,
rgba(255, 255, 255, 0.05) 30%,
transparent 70%);
}
.live-orb::before {
content: "";
display: block;
grid-area: stack;
width: 100%;
height: 100%;
border-radius: 50%;
/* 使用 CSS 变量,这里的颜色会自动跟随父容器的 transition */
background:
/* 层1:慢速逆时针 - 基底 */
conic-gradient(from calc(var(--angle) * -0.5 + 45deg) at 40% 55%,
var(--c3) 0deg,
transparent 60deg 300deg,
var(--c3) 360deg),
/* 层2:中速顺时针 - 纹理 */
conic-gradient(from calc(var(--angle) * 0.8) at 60% 45%,
var(--c2) 0deg,
transparent 45deg 315deg,
var(--c2) 360deg),
/* 层3:快速逆时针 - 扰动 */
conic-gradient(from calc(var(--angle) * -1.2 + 120deg) at 35% 65%,
var(--c1) 0deg,
transparent 80deg 280deg,
var(--c1) 360deg),
/* 层4:慢速顺时针 - 补色 */
conic-gradient(from calc(var(--angle) * 0.6 + 200deg) at 65% 35%,
var(--c2) 0deg,
transparent 50deg 310deg,
var(--c2) 360deg),
/* 层5:微弱的旋转底纹 */
conic-gradient(from calc(var(--angle) * 0.3 + 90deg) at 50% 50%,
var(--c1) 0deg,
transparent 120deg 240deg,
var(--c1) 360deg),
/* 核心高光 - 稍微偏离中心 */
radial-gradient(ellipse 120% 100% at 45% 55%,
var(--c3) 0%,
transparent 50%);
filter: blur(var(--blur-amount)) contrast(var(--contrast-amount)) saturate(1.5);
/* 移除 animation,改用 JS 驱动 --angle */
transform: translateZ(0);
will-change: transform, background;
opacity: 0.8;
}
.live-orb::after {
content: "";
display: block;
grid-area: stack;
width: 100%;
height: 100%;
border-radius: 50%;
background: radial-gradient(circle at 45% 55%,
rgba(255, 255, 255, 0.4) 0%,
rgba(255, 255, 255, 0.1) 30%,
transparent 60%);
mix-blend-mode: overlay;
pointer-events: none;
}
.eyes-container {
position: absolute;
display: flex;
gap: 60px;
z-index: 5;
/* Center it */
top: 42%;
left: 50%;
transform: translate(calc(-50% + var(--eye-x)), calc(-50% + var(--eye-y)));
pointer-events: none;
}
.eye {
width: 28px;
height: 60px;
background-color: #7d80e4;
border-radius: 20px;
opacity: 0.8;
transition: transform 0.1s ease-in-out;
transform-origin: center;
position: relative;
overflow: hidden;
}
.eye.blink {
transform: scaleY(0.1);
}
.eye.nervous {
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
box-shadow: none;
}
.nervous-eye-content {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.code-rain-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
mix-blend-mode: hard-light;
}
.code-column {
position: absolute;
top: 0;
color: rgba(180, 255, 255, 0.9);
font-family: 'Courier New', monospace;
font-weight: bold;
line-height: 1.2;
white-space: pre;
text-align: center;
animation: scrollUp linear infinite;
text-shadow: 0 0 5px rgba(100, 200, 255, 0.8);
}
@keyframes scrollUp {
from {
transform: translateY(0);
}
to {
transform: translateY(-50%);
}
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.accessory-star {
position: absolute;
width: 15px;
height: 15px;
top: 20%;
right: 20%;
transform: rotate(5deg);
z-index: -100;
opacity: 0.8;
filter: drop-shadow(0 0 5px rgba(180, 182, 255, 0.4));
animation: starFloat 4s ease-in-out infinite;
pointer-events: none;
mix-blend-mode: screen;
}
@keyframes starFloat {
0%,
100% {
transform: rotate(5deg) translateY(0) scale(1);
opacity: 0.3;
}
50% {
transform: rotate(10deg) translateY(-3px) scale(1.05);
opacity: 0.5;
}
}
</style>
|