🔊 TTS Ouvir: botão em cada resposta da Kemily com Speech Synthesis nativo

This commit is contained in:
2026-05-25 23:43:02 +00:00
parent 5b6585f1b3
commit e1e3e422de
2 changed files with 122 additions and 0 deletions
+22
View File
@@ -1255,6 +1255,28 @@ code {
transition: transform 0.2s ease;
}
.msg-action-btn.btn-speak svg {
transition: transform 0.2s ease;
}
.msg-action-btn.btn-speak:hover {
color: #8b5cf6 !important;
}
.msg-action-btn.btn-speak:hover svg {
transform: scale(1.1);
}
.msg-action-btn.btn-speak.speaking {
color: #8b5cf6 !important;
animation: pulse-speak 1.5s ease-in-out infinite;
}
@keyframes pulse-speak {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
.disclaimer {
font-size: 11px;
color: var(--text-muted);