]> gitweb.michael.orlitzky.com - charm-bypass.git/commitdiff
src/index.html.in: reduce the LCM of the bus/tram/train loops
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 13 Oct 2023 18:33:50 +0000 (14:33 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 13 Oct 2023 18:33:50 +0000 (14:33 -0400)
Using prime numbers for these ensures that they won't all "reset" to
x=0 at the same time for a much longer time.

src/index.html.in

index 19c39ef3569d44d4284e3ef230a46e343196c098..755f54020592ab630097dcaa7e4973f8aa47020d 100644 (file)
@@ -70,7 +70,7 @@
       }
 
       #bus {
-       animation: busroll 20s linear infinite;
+       animation: busroll 23s linear infinite;
       }
 
 
@@ -85,7 +85,7 @@
       }
 
       #tram {
-       animation: tramroll 15s linear infinite;
+       animation: tramroll 17s linear infinite;
       }
 
 
       }
 
       #train {
-       animation: trainroll 10s linear infinite;
+       animation: trainroll 11s linear infinite;
       }