From: Michael Orlitzky Date: Tue, 10 Oct 2023 13:04:32 +0000 (-0400) Subject: src/index.html.in: add the tram animation X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=df5abc49b8bda78244509b605398a3aae0029a0c;p=charm-bypass.git src/index.html.in: add the tram animation --- 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; + }