feat: update AudioPlayer track name animation and add infinite scroll effect in CSS

This commit is contained in:
2025-07-02 16:45:44 +00:00
committed by GitHub
parent 77bd7ff240
commit 387b5af5c0
2 changed files with 15 additions and 2 deletions

View File

@@ -15,6 +15,10 @@ body {
.animate-scroll {
animation: scroll 8s linear infinite;
}
.animate-infinite-scroll {
animation: infiniteScroll 10s linear infinite;
}
}
@keyframes scroll {
@@ -26,6 +30,15 @@ body {
}
}
@keyframes infiniteScroll {
0% {
transform: translateX(15%);
}
100% {
transform: translateX(-215%);
}
}
@layer base {
:root {
--background: 240 10% 3.9%;