commit to probably rewrite bpm detector

This commit is contained in:
2023-11-03 17:25:29 +01:00
parent 4b2ff2c557
commit 5d13e6a9e2
6 changed files with 73 additions and 24 deletions

View File

@@ -9,22 +9,14 @@
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;
}
@keyframes beatAnim {
0% {
background-color: rgba( 0, 0, 0, 0.2 );
}
50% {
background-color: rgba( 0, 0, 0, 0 );
}
display: none;
}
@keyframes gradientAnim {