feat: 语音气泡浅蓝 + 页眉图标展示全部视觉状态 + 简化自动问候

- /voice 页右下角气泡文本改浅蓝色(最新 #4cc2ff / 历史 #6fb5ea)
- GlobalVision 广播 dpm:vision-status(status/cameraOn/gesture/faces)
- 页眉图标四态:默认灰(探索) → 识别中浅蓝(摄像头开/检测/面向) → 手势绿(惊喜) → 异常红
- 自动调用语音助手问候语简化为「您好呀,需要我的帮助吗?」
This commit is contained in:
Pine
2026-08-18 06:24:26 +08:00
parent 75498027f3
commit fbf2eccad2
5 changed files with 49 additions and 7 deletions
+18
View File
@@ -2599,6 +2599,24 @@
0%, 100% { box-shadow: 0 0 8px rgba(23, 178, 106, 0.3); transform: scale(1); }
50% { box-shadow: 0 0 18px rgba(23, 178, 106, 0.6); transform: scale(1.08); }
}
/* 视觉识别中:浅蓝色(摄像头开启 / 检测中 / 面向 / 触发) */
.bd-about-btn.vision-active {
color: var(--bd-cyan, #4cc2ff);
border-color: rgba(76, 194, 255, 0.5);
background: rgba(76, 194, 255, 0.1);
box-shadow: 0 0 10px rgba(76, 194, 255, 0.35);
animation: bdVisionPulse 2s ease-in-out infinite;
}
@keyframes bdVisionPulse {
0%, 100% { box-shadow: 0 0 6px rgba(76, 194, 255, 0.25); }
50% { box-shadow: 0 0 14px rgba(76, 194, 255, 0.5); }
}
/* 视觉识别异常:红色 */
.bd-about-btn.vision-error {
color: var(--bd-red, #f04438);
border-color: rgba(240, 68, 56, 0.5);
background: rgba(240, 68, 56, 0.08);
}
.about-overlay {
position: fixed;