X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=ff5410f137a5e1c850d7cc1f7c3706fa3661ad66;hb=afb957f576b1e55cf923436a0c4d5e902b437fc2;hp=ee40cf8f18a76fd260c2fe325df2776c7786f3cc;hpb=662ede5f24dd8029c633d7a38de5545b2a568e6c;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index ee40cf8..ff5410f 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -60,15 +60,54 @@ /************************/ @keyframes busroll { from { - transform: translate(0%, 0%); + transform: translateX(0%); } to { - transform: translate(100%, 0%); + transform: translateX(100%); } } #bus { - animation: busroll 15s linear infinite; + animation: busroll 20s linear infinite; + } + + @keyframes tramroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(100%); + } + } + + #tram { + animation: tramroll 15s linear infinite; + } + + @keyframes cloudsfloat { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #clouds { + animation: cloudsfloat 40s linear infinite; + } + + @keyframes cloudscopyfloat { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #cloudscopy { + animation: cloudscopyfloat 40s linear infinite; }