diff --git a/dsLightRag/Doc/L2Dwidget看板娘/Sample.html b/dsLightRag/Doc/L2Dwidget看板娘/Sample.html index c7119646..5472304e 100644 --- a/dsLightRag/Doc/L2Dwidget看板娘/Sample.html +++ b/dsLightRag/Doc/L2Dwidget看板娘/Sample.html @@ -22,6 +22,53 @@ background-color: white; font-size: 14px; } + .recording-indicator { + position: fixed; + bottom: 20px; + left: 20px; + z-index: 1000; + padding: 10px 15px; + background-color: rgba(220, 53, 69, 0.9); + color: white; + border-radius: 20px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); + display: none; + align-items: center; + } + .recording-dot { + width: 10px; + height: 10px; + background-color: white; + border-radius: 50%; + margin-right: 8px; + animation: pulse 1.5s infinite; + } + @keyframes pulse { + 0% { opacity: 1; } + 50% { opacity: 0.5; } + 100% { opacity: 1; } + } + .record-controls { + position: fixed; + bottom: 20px; + right: 20px; + z-index: 1000; + display: none; + } + .record-button { + width: 60px; + height: 60px; + border-radius: 50%; + background-color: #dc3545; + border: none; + color: white; + font-size: 16px; + cursor: pointer; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + } + .record-button:hover { + background-color: #c82333; + }
@@ -34,6 +81,15 @@ +