X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=992d9eca903717b4c397a414d39daa7acb5c6dd5;hb=8f9304acfc40a83fff845886cfbf32acb45cb67a;hp=8d19568f74c3664f8d3dead6a39bb6f60be26053;hpb=3b9c046ab2c08452770b3f79fabfd323d0ed0d00;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index 8d19568..992d9ec 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -170,6 +170,38 @@ /* The trees move a little faster than the clouds */ animation: treescopypass 30s linear infinite; } + + + /* City skyline */ + @keyframes cityscroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #city { + /* The city moves faster than the clouds but slower + * than the trees */ + animation: cityscroll 35s linear infinite; + } + + @keyframes citycopyscroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #citycopy { + /* The city moves faster than the clouds but slower + * than the trees */ + animation: citycopyscroll 35s linear infinite; + }