From df5abc49b8bda78244509b605398a3aae0029a0c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 10 Oct 2023 09:04:32 -0400 Subject: [PATCH] src/index.html.in: add the tram animation --- src/index.html.in | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/index.html.in b/src/index.html.in index ee40cf8..6d25d3e 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -70,6 +70,19 @@ #bus { animation: busroll 15s linear infinite; } + + @keyframes tramroll { + from { + transform: translate(0%, 0%); + } + to { + transform: translate(100%, 0%); + } + } + + #tram { + animation: tramroll 10s linear infinite; + } -- 2.44.2