💄 feat(playground): chat streaming animation

This commit is contained in:
Apple\Apple
2025-06-02 19:58:10 +08:00
parent d534d4575d
commit bafb0078e2
7 changed files with 97 additions and 16 deletions

View File

@@ -419,4 +419,18 @@ pre:hover .copy-code-button {
padding: 12px 16px;
margin: 12px 0;
border-radius: 0 6px 6px 0;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-fade-in {
animation: fade-in 0.4s ease-in-out both;
}