From: Michael Orlitzky Date: Fri, 13 Oct 2023 18:33:50 +0000 (-0400) Subject: src/index.html.in: reduce the LCM of the bus/tram/train loops X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=97147de2946bfac70474870f9f67207d5b3cd038;p=charm-bypass.git src/index.html.in: reduce the LCM of the bus/tram/train loops Using prime numbers for these ensures that they won't all "reset" to x=0 at the same time for a much longer time. --- diff --git a/src/index.html.in b/src/index.html.in index 19c39ef..755f540 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -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; } @@ -100,7 +100,7 @@ } #train { - animation: trainroll 10s linear infinite; + animation: trainroll 11s linear infinite; }