X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=6d25d3ee17b4b7e27cf9c053359bef2f903d3929;hb=2ccde8c5a97544bc149d66c102d131089358f034;hp=271651099a79f6d1c907f92caf0d5f9c6021579d;hpb=f74682c5ed759123da496f43000835d1b3cbc05f;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index 2716510..6d25d3e 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -55,6 +55,34 @@ font-family: "CharmBypass Ticket Text" !important; } + /************************/ + /* Scrolling animations */ + /************************/ + @keyframes busroll { + from { + transform: translate(0%, 0%); + } + to { + transform: translate(100%, 0%); + } + } + + #bus { + animation: busroll 15s linear infinite; + } + + @keyframes tramroll { + from { + transform: translate(0%, 0%); + } + to { + transform: translate(100%, 0%); + } + } + + #tram { + animation: tramroll 10s linear infinite; + }