532 lines
24 KiB
HTML
532 lines
24 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>工具栏统一设计 v1.0 - 消息框内上方 4 按钮</title>
|
||
|
|
<style>
|
||
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
|
body {
|
||
|
|
font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
|
||
|
|
background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 50%, #fce7f3 100%);
|
||
|
|
color: #1a1a1a;
|
||
|
|
padding: 24px;
|
||
|
|
line-height: 1.5;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
h1 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; color: #1a1a1a; }
|
||
|
|
h2 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 32px 0 12px; color: #1a1a1a; }
|
||
|
|
h3 { font-size: 14px; font-weight: 600; margin: 12px 0 8px; color: #333; }
|
||
|
|
.meta { color: #6b7280; font-size: 12.5px; margin-bottom: 20px; }
|
||
|
|
|
||
|
|
/* === ChatPanel 整体模拟 === */
|
||
|
|
.chatpanel-mock {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 720px;
|
||
|
|
margin: 0 auto;
|
||
|
|
background: rgba(255, 255, 255, 0.85);
|
||
|
|
backdrop-filter: blur(20px) saturate(180%);
|
||
|
|
-webkit-backdrop-filter: blur(20px) saturate(180%);
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.9);
|
||
|
|
border-radius: 16px;
|
||
|
|
box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.chatpanel-mock-header {
|
||
|
|
padding: 12px 16px;
|
||
|
|
border-bottom: 1px solid rgba(99, 102, 241, 0.1);
|
||
|
|
background: rgba(255, 255, 255, 0.5);
|
||
|
|
font-size: 13px;
|
||
|
|
color: #6b7280;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
.chatpanel-mock-header .dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; }
|
||
|
|
|
||
|
|
/* === 消息流区域 === */
|
||
|
|
.chatpanel-mock-messages {
|
||
|
|
min-height: 280px;
|
||
|
|
padding: 20px 16px;
|
||
|
|
background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === 4 按钮工具栏(消息流上方居中) === */
|
||
|
|
.glass-toolbar {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 10px;
|
||
|
|
padding: 8px 16px;
|
||
|
|
margin: 0 auto 16px;
|
||
|
|
width: fit-content;
|
||
|
|
background: rgba(255, 255, 255, 0.55);
|
||
|
|
backdrop-filter: blur(28px) saturate(180%);
|
||
|
|
-webkit-backdrop-filter: blur(28px) saturate(180%);
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.7);
|
||
|
|
border-radius: 20px;
|
||
|
|
box-shadow:
|
||
|
|
0 1px 0 rgba(255, 255, 255, 0.9) inset,
|
||
|
|
0 -1px 0 rgba(99, 102, 241, 0.08) inset,
|
||
|
|
0 2px 4px rgba(99, 102, 241, 0.05),
|
||
|
|
0 8px 16px rgba(99, 102, 241, 0.08),
|
||
|
|
0 24px 48px rgba(99, 102, 241, 0.05);
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.glass-toolbar::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
border-radius: 20px;
|
||
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 60%);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
.glass-toolbar::after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
border-radius: 20px;
|
||
|
|
background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
|
||
|
|
radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
|
||
|
|
pointer-events: none;
|
||
|
|
z-index: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === 4 按钮(40px · 高级感) === */
|
||
|
|
.glass-btn {
|
||
|
|
width: 40px;
|
||
|
|
height: 40px;
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.6);
|
||
|
|
background: rgba(255, 255, 255, 0.55);
|
||
|
|
backdrop-filter: blur(20px);
|
||
|
|
-webkit-backdrop-filter: blur(20px);
|
||
|
|
border-radius: 50%;
|
||
|
|
cursor: pointer;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
||
|
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
position: relative;
|
||
|
|
z-index: 2;
|
||
|
|
box-shadow:
|
||
|
|
0 1px 0 rgba(255, 255, 255, 0.9) inset,
|
||
|
|
0 -1px 0 rgba(0, 0, 0, 0.04) inset,
|
||
|
|
0 1px 2px rgba(0, 0, 0, 0.04),
|
||
|
|
0 2px 4px rgba(0, 0, 0, 0.04);
|
||
|
|
overflow: visible;
|
||
|
|
}
|
||
|
|
.glass-btn:hover {
|
||
|
|
background: rgba(255, 255, 255, 0.75);
|
||
|
|
transform: translateY(-1px) scale(1.06);
|
||
|
|
box-shadow:
|
||
|
|
0 1px 0 rgba(255, 255, 255, 1) inset,
|
||
|
|
0 -1px 0 rgba(0, 0, 0, 0.04) inset,
|
||
|
|
0 2px 4px rgba(0, 0, 0, 0.06),
|
||
|
|
0 8px 16px rgba(99, 102, 241, 0.15);
|
||
|
|
}
|
||
|
|
.glass-btn:active { transform: translateY(0) scale(0.95); }
|
||
|
|
.glass-btn svg { width: 22px; height: 22px; display: block; }
|
||
|
|
|
||
|
|
/* === 激活态渐变(各按钮专属色) === */
|
||
|
|
.glass-btn.is-active-emoji { background: linear-gradient(135deg, rgba(251, 191, 36, 0.9) 0%, rgba(245, 158, 11, 0.9) 100%); border-color: rgba(255, 255, 255, 0.4); }
|
||
|
|
.glass-btn.is-active-emoji::before { content: ""; position: absolute; inset: 1px; border-radius: 50%; background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%); pointer-events: none; }
|
||
|
|
.glass-btn.is-active-file { background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%); border-color: rgba(255, 255, 255, 0.4); }
|
||
|
|
.glass-btn.is-active-file::before { content: ""; position: absolute; inset: 1px; border-radius: 50%; background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%); pointer-events: none; }
|
||
|
|
.glass-btn.is-active-voice { background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%); border-color: rgba(255, 255, 255, 0.4); }
|
||
|
|
.glass-btn.is-active-voice::before { content: ""; position: absolute; inset: 1px; border-radius: 50%; background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%); pointer-events: none; }
|
||
|
|
|
||
|
|
/* 语音录音中(红色脉冲) */
|
||
|
|
.glass-btn.is-recording {
|
||
|
|
background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
|
||
|
|
border-color: rgba(255, 255, 255, 0.4);
|
||
|
|
animation: recordingPulse 1.5s ease-in-out infinite;
|
||
|
|
}
|
||
|
|
@keyframes recordingPulse {
|
||
|
|
0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), 0 1px 0 rgba(255, 255, 255, 0.9) inset; }
|
||
|
|
50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.15), 0 1px 0 rgba(255, 255, 255, 0.9) inset; }
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === 坐席按钮(图片头像) === */
|
||
|
|
.agent-btn {
|
||
|
|
width: 44px;
|
||
|
|
height: 44px;
|
||
|
|
border-radius: 50%;
|
||
|
|
border: 2px solid transparent;
|
||
|
|
cursor: pointer;
|
||
|
|
position: relative;
|
||
|
|
z-index: 2;
|
||
|
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
||
|
|
-webkit-tap-highlight-color: transparent;
|
||
|
|
overflow: hidden;
|
||
|
|
padding: 0;
|
||
|
|
background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%) padding-box;
|
||
|
|
}
|
||
|
|
.agent-btn::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: -2px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
|
||
|
|
z-index: -1;
|
||
|
|
}
|
||
|
|
.agent-btn img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
border-radius: 50%;
|
||
|
|
object-fit: cover;
|
||
|
|
object-position: center 15%;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
.agent-btn:hover {
|
||
|
|
transform: translateY(-1px) scale(1.05);
|
||
|
|
}
|
||
|
|
.agent-btn.is-active { background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%) padding-box; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); }
|
||
|
|
.agent-btn.is-disabled { opacity: 0.4; filter: grayscale(0.7); }
|
||
|
|
.agent-btn.is-urgent { border: 2.5px solid #ef4444; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0), 0 4px 12px rgba(239, 68, 68, 0.3); animation: recordingPulse 1.5s ease-in-out infinite; }
|
||
|
|
.agent-btn.is-waiting { border: 2.5px solid #f59e0b; box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3); }
|
||
|
|
.agent-btn.is-end { border: 2.5px solid #10b981; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
|
||
|
|
.agent-btn.is-reopen { border: 2.5px solid #3b82f6; box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); }
|
||
|
|
|
||
|
|
/* === 模拟消息 === */
|
||
|
|
.mock-msg {
|
||
|
|
max-width: 70%;
|
||
|
|
padding: 8px 12px;
|
||
|
|
border-radius: 12px;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
font-size: 13px;
|
||
|
|
line-height: 1.5;
|
||
|
|
}
|
||
|
|
.mock-msg.user {
|
||
|
|
margin-left: auto;
|
||
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.mock-msg.ai {
|
||
|
|
background: rgba(255, 255, 255, 0.8);
|
||
|
|
color: #1a1a1a;
|
||
|
|
border: 1px solid rgba(99, 102, 241, 0.1);
|
||
|
|
}
|
||
|
|
.mock-msg .meta { font-size: 10.5px; opacity: 0.7; margin-bottom: 2px; color: #6b7280; }
|
||
|
|
.mock-msg.user .meta { color: rgba(255, 255, 255, 0.7); }
|
||
|
|
|
||
|
|
/* === 演示容器 === */
|
||
|
|
.demo-block {
|
||
|
|
background: rgba(255, 255, 255, 0.6);
|
||
|
|
backdrop-filter: blur(20px);
|
||
|
|
-webkit-backdrop-filter: blur(20px);
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.7);
|
||
|
|
border-radius: 18px;
|
||
|
|
padding: 24px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 16px rgba(99, 102, 241, 0.06);
|
||
|
|
}
|
||
|
|
.demo-label { font-size: 11.5px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; font-weight: 500; }
|
||
|
|
|
||
|
|
.state-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(99, 102, 241, 0.12); }
|
||
|
|
.state-tab {
|
||
|
|
padding: 6px 12px;
|
||
|
|
border: 1px solid rgba(99, 102, 241, 0.2);
|
||
|
|
background: rgba(255, 255, 255, 0.6);
|
||
|
|
border-radius: 8px;
|
||
|
|
cursor: pointer;
|
||
|
|
font-size: 12.5px;
|
||
|
|
color: #4b5563;
|
||
|
|
transition: all 0.15s;
|
||
|
|
font-family: inherit;
|
||
|
|
}
|
||
|
|
.state-tab:hover { background: rgba(255, 255, 255, 0.8); }
|
||
|
|
.state-tab.active { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; border-color: transparent; }
|
||
|
|
|
||
|
|
.note { background: rgba(254, 243, 199, 0.6); border-left: 3px solid #d97706; padding: 12px 16px; border-radius: 4px; font-size: 12.5px; color: #78350f; margin: 16px 0; backdrop-filter: blur(10px); }
|
||
|
|
.state-desc { color: #4b5563; font-size: 12.5px; line-height: 1.7; background: rgba(255, 255, 255, 0.5); padding: 12px 14px; border-radius: 10px; border-left: 2px solid #6366f1; margin-top: 12px; backdrop-filter: blur(10px); }
|
||
|
|
.state-desc strong { color: #1a1a1a; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<svg width="0" height="0" style="position: absolute;">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="g-emoji" x1="0%" y1="0%" x2="0%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="#fde68a"/><stop offset="60%" stop-color="#fbbf24"/><stop offset="100%" stop-color="#d97706"/>
|
||
|
|
</linearGradient>
|
||
|
|
<radialGradient id="g-emoji-blush" cx="50%" cy="50%" r="50%">
|
||
|
|
<stop offset="0%" stop-color="rgba(244, 63, 94, 0.4)"/>
|
||
|
|
<stop offset="100%" stop-color="rgba(244, 63, 94, 0)"/>
|
||
|
|
</radialGradient>
|
||
|
|
<linearGradient id="g-highlight" x1="50%" y1="0%" x2="50%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="white" stop-opacity="0.7"/>
|
||
|
|
<stop offset="100%" stop-color="white" stop-opacity="0"/>
|
||
|
|
</linearGradient>
|
||
|
|
<linearGradient id="g-doc-body" x1="50%" y1="0%" x2="50%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="#ffffff"/><stop offset="100%" stop-color="#dbeafe"/>
|
||
|
|
</linearGradient>
|
||
|
|
<linearGradient id="g-doc-fold" x1="50%" y1="0%" x2="50%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="#c7d2fe"/><stop offset="100%" stop-color="#6366f1"/>
|
||
|
|
</linearGradient>
|
||
|
|
<linearGradient id="g-doc-text" x1="0%" y1="0%" x2="100%" y2="0%">
|
||
|
|
<stop offset="0%" stop-color="#6366f1"/><stop offset="100%" stop-color="#a855f7"/>
|
||
|
|
</linearGradient>
|
||
|
|
<linearGradient id="g-mic-body" x1="50%" y1="0%" x2="50%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="#c4b5fd"/><stop offset="50%" stop-color="#8b5cf6"/><stop offset="100%" stop-color="#6d28d9"/>
|
||
|
|
</linearGradient>
|
||
|
|
<linearGradient id="g-mic-shine" x1="50%" y1="0%" x2="50%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="white" stop-opacity="0.65"/><stop offset="100%" stop-color="white" stop-opacity="0"/>
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
</svg>
|
||
|
|
|
||
|
|
<h1>工具栏统一设计 v1.0 — 消息框内上方 4 按钮</h1>
|
||
|
|
<p class="meta">表情/文件/语音/坐席 · 消息流上方居中 · v0.5 玻璃拟态 · 高级感 SVG + 真实图片头像 · 2026-08-04 凌晨</p>
|
||
|
|
|
||
|
|
<div class="note">
|
||
|
|
📌 本版核心改动(对比 v0.9):<br>
|
||
|
|
• <strong>工具栏位置改了!</strong> — 不再在 InputBar 内部,而是<strong>消息流(消息框)内上方居中</strong>(在 ChatPanel 里,不在 ChatPanel 输入栏里)<br>
|
||
|
|
• <strong>4 按钮加回坐席!</strong> — 表情/文件/语音/坐席(你提醒我别忘)<br>
|
||
|
|
• 坐席按钮用你提供的 3D 拟人吉祥物图片(沿用 v0.8)<br>
|
||
|
|
• 3 高级感 SVG 按钮(表情/文件/语音)沿用 v0.9 升级版
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>🎨 ChatPanel 消息框(工具栏在消息流上方)</h2>
|
||
|
|
<div class="chatpanel-mock">
|
||
|
|
<div class="chatpanel-mock-header">
|
||
|
|
<span class="dot"></span>
|
||
|
|
<span>IT 智能服务台 · 在线 · 客服小王</span>
|
||
|
|
</div>
|
||
|
|
<div class="chatpanel-mock-messages">
|
||
|
|
<!-- 4 按钮工具栏(消息流上方居中) -->
|
||
|
|
<div class="glass-toolbar" id="toolbar-stage">
|
||
|
|
<!-- 1. 表情(高级感) -->
|
||
|
|
<button class="glass-btn" title="表情">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none">
|
||
|
|
<circle cx="12" cy="12" r="9" fill="url(#g-emoji)"/>
|
||
|
|
<ellipse cx="12" cy="6" rx="6" ry="2.5" fill="url(#g-highlight)"/>
|
||
|
|
<ellipse cx="6.5" cy="14" rx="1.5" ry="1" fill="url(#g-emoji-blush)"/>
|
||
|
|
<ellipse cx="17.5" cy="14" rx="1.5" ry="1" fill="url(#g-emoji-blush)"/>
|
||
|
|
<ellipse cx="8.5" cy="11" rx="1.4" ry="1.6" fill="#1e1b4b"/>
|
||
|
|
<ellipse cx="15.5" cy="11" rx="1.4" ry="1.6" fill="#1e1b4b"/>
|
||
|
|
<circle cx="8.9" cy="10.4" r="0.5" fill="white"/>
|
||
|
|
<circle cx="15.9" cy="10.4" r="0.5" fill="white"/>
|
||
|
|
<path d="M8 15 Q12 18 16 15" fill="none" stroke="#1e1b4b" stroke-width="1.6" stroke-linecap="round"/>
|
||
|
|
<path d="M8 15 Q12 17 16 15" fill="rgba(244, 63, 94, 0.2)"/>
|
||
|
|
</svg>
|
||
|
|
</button>
|
||
|
|
<!-- 2. 文件(高级感) -->
|
||
|
|
<button class="glass-btn" title="文件">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none">
|
||
|
|
<path d="M4 2 L14 2 L20 8 L20 20 L4 20 Z" fill="url(#g-doc-body)" stroke="#818cf8" stroke-width="0.8" stroke-linejoin="round"/>
|
||
|
|
<path d="M14 2 L14 8 L20 8" fill="url(#g-doc-fold)" stroke="#818cf8" stroke-width="0.8" stroke-linejoin="round"/>
|
||
|
|
<ellipse cx="10" cy="4" rx="5" ry="0.8" fill="url(#g-highlight)"/>
|
||
|
|
<rect x="7" y="11.5" width="10" height="0.8" rx="0.4" fill="url(#g-doc-text)"/>
|
||
|
|
<rect x="7" y="14" width="8" height="0.8" rx="0.4" fill="url(#g-doc-text)" opacity="0.7"/>
|
||
|
|
<rect x="7" y="16.5" width="6" height="0.8" rx="0.4" fill="url(#g-doc-text)" opacity="0.5"/>
|
||
|
|
</svg>
|
||
|
|
</button>
|
||
|
|
<!-- 3. 语音输入(高级感) -->
|
||
|
|
<button class="glass-btn" title="语音输入">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none">
|
||
|
|
<rect x="8" y="2" width="8" height="13" rx="4" fill="url(#g-mic-body)"/>
|
||
|
|
<rect x="9" y="3" width="2" height="11" rx="1" fill="url(#g-mic-shine)"/>
|
||
|
|
<line x1="10.5" y1="6" x2="10.5" y2="11" stroke="white" stroke-width="0.3" opacity="0.4"/>
|
||
|
|
<line x1="12" y1="5" x2="12" y2="12" stroke="white" stroke-width="0.3" opacity="0.4"/>
|
||
|
|
<line x1="13.5" y1="6" x2="13.5" y2="11" stroke="white" stroke-width="0.3" opacity="0.4"/>
|
||
|
|
<path d="M3 12 Q3 18 12 18 Q21 18 21 12" fill="none" stroke="url(#g-mic-body)" stroke-width="2" stroke-linecap="round"/>
|
||
|
|
<line x1="12" y1="18" x2="12" y2="22" stroke="url(#g-mic-body)" stroke-width="2" stroke-linecap="round"/>
|
||
|
|
<line x1="8" y1="22" x2="16" y2="22" stroke="url(#g-mic-body)" stroke-width="2" stroke-linecap="round"/>
|
||
|
|
</svg>
|
||
|
|
</button>
|
||
|
|
<!-- 4. 坐席(真实图片) -->
|
||
|
|
<button class="agent-btn is-active" title="客服在线 · 点击呼叫">
|
||
|
|
<img src="./agent-avatar-v0.8.jpg" alt="客服" />
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- 模拟消息流 -->
|
||
|
|
<div class="mock-msg user">
|
||
|
|
<div class="meta">我 10:23</div>
|
||
|
|
你好,我电脑经常蓝屏
|
||
|
|
</div>
|
||
|
|
<div class="mock-msg ai">
|
||
|
|
<div class="meta">AI 10:23</div>
|
||
|
|
您好!电脑蓝屏可能由驱动/内存/温度等问题引起。建议先尝试安全模式启动...
|
||
|
|
</div>
|
||
|
|
<div class="mock-msg user">
|
||
|
|
<div class="meta">我 10:25</div>
|
||
|
|
还有其他办法吗?紧急,需要尽快恢复
|
||
|
|
</div>
|
||
|
|
<div style="text-align: center; color: #9ca3af; font-size: 11.5px; margin-top: 12px;">
|
||
|
|
↓ 在消息流下方继续输入 ↓
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>🎬 4 按钮不同状态演示</h2>
|
||
|
|
<div class="demo-block">
|
||
|
|
<div class="state-tabs">
|
||
|
|
<button class="state-tab active" data-state="default">默认</button>
|
||
|
|
<button class="state-tab" data-state="emoji">表情激活</button>
|
||
|
|
<button class="state-tab" data-state="file">文件激活</button>
|
||
|
|
<button class="state-tab" data-state="voice-active">语音激活</button>
|
||
|
|
<button class="state-tab" data-state="voice-recording">语音录音中</button>
|
||
|
|
<button class="state-tab" data-state="agent-active">坐席已呼叫</button>
|
||
|
|
<button class="state-tab" data-state="agent-urgent">坐席紧急</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="chatpanel-mock">
|
||
|
|
<div class="chatpanel-mock-messages" style="min-height: 100px;">
|
||
|
|
<div class="glass-toolbar" id="state-stage"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="state-desc" id="state-desc"></div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>📊 v1.0 vs 之前版本关键差异</h2>
|
||
|
|
<table style="width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 12.5px;">
|
||
|
|
<thead>
|
||
|
|
<tr style="background: rgba(255, 255, 255, 0.6);">
|
||
|
|
<th style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px; text-align: left;">维度</th>
|
||
|
|
<th style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px; text-align: left;">v0.9</th>
|
||
|
|
<th style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px; text-align: left;"><strong>v1.0 终极</strong></th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<tr>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">按钮数</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">3(去掉坐席)</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;"><strong>4(加回坐席)</strong></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">位置</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">InputBar 内部工具栏</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;"><strong>消息框内上方居中(不在 InputBar)</strong></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">3 按钮设计</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">高级感 SVG</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;"><strong>沿用(相同)</strong></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">坐席按钮</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;">✗ 没有</td>
|
||
|
|
<td style="border: 1px solid rgba(99, 102, 241, 0.15); padding: 8px;"><strong>✓ 图片头像(你提供)</strong></td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<h2>❓ 待你拍板</h2>
|
||
|
|
<ol style="margin-left: 20px; line-height: 1.8;">
|
||
|
|
<li><strong>位置改了</strong>(消息框内上方,不是 InputBar 内)OK 吗?</li>
|
||
|
|
<li><strong>4 按钮加回坐席</strong>OK 吗?(表情/文件/语音/坐席)</li>
|
||
|
|
<li><strong>坐席按钮 44px</strong>(比其他 40px 略大,突出头像)OK 吗?</li>
|
||
|
|
<li><strong>整体设计</strong>可以开始实施了吗?</li>
|
||
|
|
</ol>
|
||
|
|
|
||
|
|
<p style="margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(99, 102, 241, 0.15); color: #6b7280; font-size: 11.5px;">
|
||
|
|
v1.0 消息框内上方 4 按钮 · 2026-08-04 · Duckula 主理人 · 等待用户拍板
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
const stateMap = {
|
||
|
|
'default': {
|
||
|
|
toolbar: '',
|
||
|
|
desc: '<strong>默认状态</strong>: 4 按钮全部默认(浅玻璃) — 表情/文件/语音/坐席(图片头像紫粉渐变边框)都未激活'
|
||
|
|
},
|
||
|
|
'emoji': {
|
||
|
|
toolbar: 'emojiActive',
|
||
|
|
desc: '<strong>表情激活</strong>: 表情按钮变<strong>黄橙渐变</strong> — 表情面板已打开(emoji 网格弹出)'
|
||
|
|
},
|
||
|
|
'file': {
|
||
|
|
toolbar: 'fileActive',
|
||
|
|
desc: '<strong>文件激活</strong>: 文件按钮变<strong>蓝紫渐变</strong> — 文件选择器已打开(选择图片/文档)'
|
||
|
|
},
|
||
|
|
'voice-active': {
|
||
|
|
toolbar: 'voiceActive',
|
||
|
|
desc: '<strong>语音激活</strong>: 语音按钮变<strong>紫粉渐变</strong> — 准备录音(用户可点击开始)'
|
||
|
|
},
|
||
|
|
'voice-recording': {
|
||
|
|
toolbar: 'voiceRecording',
|
||
|
|
desc: '<strong>语音录音中</strong>: 语音按钮变<strong>红色 + 1.5s 发光呼吸</strong> — 正在录音(用户可点击停止)'
|
||
|
|
},
|
||
|
|
'agent-active': {
|
||
|
|
toolbar: 'agentActive',
|
||
|
|
desc: '<strong>坐席已呼叫</strong>: 坐席按钮<strong>紫粉渐变边框 + 阴影</strong> — 呼叫成功,等待坐席接入'
|
||
|
|
},
|
||
|
|
'agent-urgent': {
|
||
|
|
toolbar: 'agentUrgent',
|
||
|
|
desc: '<strong>坐席紧急</strong>: 坐席按钮<strong>红色边框 + 1.5s 发光呼吸</strong> — 紧急关键词命中,坐席直接接入'
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
const svgEmoji = `<svg viewBox="0 0 24 24" fill="none">
|
||
|
|
<circle cx="12" cy="12" r="9" fill="url(#g-emoji)"/>
|
||
|
|
<ellipse cx="12" cy="6" rx="6" ry="2.5" fill="url(#g-highlight)"/>
|
||
|
|
<ellipse cx="6.5" cy="14" rx="1.5" ry="1" fill="url(#g-emoji-blush)"/>
|
||
|
|
<ellipse cx="17.5" cy="14" rx="1.5" ry="1" fill="url(#g-emoji-blush)"/>
|
||
|
|
<ellipse cx="8.5" cy="11" rx="1.4" ry="1.6" fill="#1e1b4b"/>
|
||
|
|
<ellipse cx="15.5" cy="11" rx="1.4" ry="1.6" fill="#1e1b4b"/>
|
||
|
|
<circle cx="8.9" cy="10.4" r="0.5" fill="white"/>
|
||
|
|
<circle cx="15.9" cy="10.4" r="0.5" fill="white"/>
|
||
|
|
<path d="M8 15 Q12 18 16 15" fill="none" stroke="#1e1b4b" stroke-width="1.6" stroke-linecap="round"/>
|
||
|
|
<path d="M8 15 Q12 17 16 15" fill="rgba(244, 63, 94, 0.2)"/>
|
||
|
|
</svg>`;
|
||
|
|
const svgFile = `<svg viewBox="0 0 24 24" fill="none">
|
||
|
|
<path d="M4 2 L14 2 L20 8 L20 20 L4 20 Z" fill="url(#g-doc-body)" stroke="#818cf8" stroke-width="0.8" stroke-linejoin="round"/>
|
||
|
|
<path d="M14 2 L14 8 L20 8" fill="url(#g-doc-fold)" stroke="#818cf8" stroke-width="0.8" stroke-linejoin="round"/>
|
||
|
|
<ellipse cx="10" cy="4" rx="5" ry="0.8" fill="url(#g-highlight)"/>
|
||
|
|
<rect x="7" y="11.5" width="10" height="0.8" rx="0.4" fill="url(#g-doc-text)"/>
|
||
|
|
<rect x="7" y="14" width="8" height="0.8" rx="0.4" fill="url(#g-doc-text)" opacity="0.7"/>
|
||
|
|
<rect x="7" y="16.5" width="6" height="0.8" rx="0.4" fill="url(#g-doc-text)" opacity="0.5"/>
|
||
|
|
</svg>`;
|
||
|
|
const svgVoice = `<svg viewBox="0 0 24 24" fill="none">
|
||
|
|
<rect x="8" y="2" width="8" height="13" rx="4" fill="url(#g-mic-body)"/>
|
||
|
|
<rect x="9" y="3" width="2" height="11" rx="1" fill="url(#g-mic-shine)"/>
|
||
|
|
<line x1="10.5" y1="6" x2="10.5" y2="11" stroke="white" stroke-width="0.3" opacity="0.4"/>
|
||
|
|
<line x1="12" y1="5" x2="12" y2="12" stroke="white" stroke-width="0.3" opacity="0.4"/>
|
||
|
|
<line x1="13.5" y1="6" x2="13.5" y2="11" stroke="white" stroke-width="0.3" opacity="0.4"/>
|
||
|
|
<path d="M3 12 Q3 18 12 18 Q21 18 21 12" fill="none" stroke="url(#g-mic-body)" stroke-width="2" stroke-linecap="round"/>
|
||
|
|
<line x1="12" y1="18" x2="12" y2="22" stroke="url(#g-mic-body)" stroke-width="2" stroke-linecap="round"/>
|
||
|
|
<line x1="8" y1="22" x2="16" y2="22" stroke="url(#g-mic-body)" stroke-width="2" stroke-linecap="round"/>
|
||
|
|
</svg>`;
|
||
|
|
const imgAgent = `<img src="./agent-avatar-v0.8.jpg" alt="客服" />`;
|
||
|
|
|
||
|
|
function renderToolbar(stage, state) {
|
||
|
|
const emojiClass = state === 'emojiActive' ? 'is-active-emoji' : '';
|
||
|
|
const fileClass = state === 'fileActive' ? 'is-active-file' : '';
|
||
|
|
const voiceClass = state === 'voiceActive' ? 'is-active-voice' : (state === 'voiceRecording' ? 'is-recording' : '');
|
||
|
|
const agentClass = state === 'agentActive' ? 'is-active' : (state === 'agentUrgent' ? 'is-urgent' : 'is-active');
|
||
|
|
stage.innerHTML = `
|
||
|
|
<button class="glass-btn ${emojiClass}" title="表情">${svgEmoji}</button>
|
||
|
|
<button class="glass-btn ${fileClass}" title="文件">${svgFile}</button>
|
||
|
|
<button class="glass-btn ${voiceClass}" title="语音输入">${svgVoice}</button>
|
||
|
|
<button class="agent-btn ${agentClass}" title="客服在线 · 点击呼叫">${imgAgent}</button>
|
||
|
|
`;
|
||
|
|
}
|
||
|
|
|
||
|
|
const toolbarStage = document.getElementById('toolbar-stage');
|
||
|
|
const stateStage = document.getElementById('state-stage');
|
||
|
|
const stateDesc = document.getElementById('state-desc');
|
||
|
|
const stateTabs = document.querySelectorAll('.state-tab');
|
||
|
|
|
||
|
|
function renderAll(state) {
|
||
|
|
const s = stateMap[state];
|
||
|
|
if (toolbarStage) renderToolbar(toolbarStage, s.toolbar);
|
||
|
|
if (stateStage) renderToolbar(stateStage, s.toolbar);
|
||
|
|
if (stateDesc) stateDesc.innerHTML = s.desc;
|
||
|
|
}
|
||
|
|
|
||
|
|
let currentState = 'default';
|
||
|
|
stateTabs.forEach(tab => {
|
||
|
|
tab.addEventListener('click', () => {
|
||
|
|
stateTabs.forEach(t => t.classList.remove('active'));
|
||
|
|
tab.classList.add('active');
|
||
|
|
currentState = tab.dataset.state;
|
||
|
|
renderAll(currentState);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
renderAll('default');
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|