mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 04:54:23 +00:00
animation of remote display
This commit is contained in:
@@ -9,16 +9,25 @@
|
||||
background: conic-gradient( blue, green, red, blue );
|
||||
animation: gradientAnim 10s infinite linear;
|
||||
background-position: center;
|
||||
transition: all 0.1s;
|
||||
}
|
||||
|
||||
.beat {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: rgba( 0, 0, 0, 0.2 );
|
||||
animation: beatAnim 0.6s infinite linear;
|
||||
display: none;
|
||||
}
|
||||
|
||||
@keyframes beatAnim {
|
||||
0% {
|
||||
background-color: rgba( 0, 0, 0, 0.2 );
|
||||
}
|
||||
50% {
|
||||
background-color: rgba( 0, 0, 0, 0 );
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes gradientAnim {
|
||||
from {
|
||||
transform: rotate( 0deg );
|
||||
|
||||
Reference in New Issue
Block a user