From: Michael Orlitzky Date: Fri, 13 Oct 2023 18:31:37 +0000 (-0400) Subject: src/index.html.in: animate the train X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=039d2c876b1dd3b05a5dd81ac361cfab2ccef72a;p=charm-bypass.git src/index.html.in: animate the train --- diff --git a/src/index.html.in b/src/index.html.in index d6f4213..19c39ef 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -89,6 +89,21 @@ } + /* Tram */ + @keyframes trainroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(100%); + } + } + + #train { + animation: trainroll 10s linear infinite; + } + + /* Clouds */ @keyframes cloudsfloat { from {