From 97147de2946bfac70474870f9f67207d5b3cd038 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 13 Oct 2023 14:33:50 -0400 Subject: [PATCH] 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. --- src/index.html.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.44.2