From: Michael Orlitzky Date: Wed, 8 Nov 2023 16:35:51 +0000 (-0500) Subject: index.html.in: speed up the animations X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=e1bb7d63fac914bfcd2da4caedb36f3dccbe6e88;p=charm-bypass.git index.html.in: speed up the animations They were running a little bit slower than they should have been. --- diff --git a/index.html.in b/index.html.in index a8bb47d..ccf1581 100644 --- a/index.html.in +++ b/index.html.in @@ -102,7 +102,7 @@ } #bus { - animation: busroll 23s linear infinite; + animation: busroll 15s linear infinite; } @@ -113,7 +113,7 @@ } #tram { - animation: tramroll 17s linear infinite; + animation: tramroll 15s linear infinite; } @@ -124,7 +124,7 @@ } #train { - animation: trainroll 11s linear infinite; + animation: trainroll 10s linear infinite; } @@ -135,7 +135,7 @@ } #clouds { - animation: cloudsfloat 40s linear infinite; + animation: cloudsfloat 25s linear infinite; } @keyframes cloudscopyfloat { @@ -144,7 +144,7 @@ } #cloudscopy { - animation: cloudscopyfloat 40s linear infinite; + animation: cloudscopyfloat 25s linear infinite; } @@ -156,7 +156,7 @@ #trees { /* The trees move a little faster than the clouds */ - animation: treespass 30s linear infinite; + animation: treespass 18s linear infinite; } @keyframes treescopypass { @@ -166,7 +166,7 @@ #treescopy { /* The trees move a little faster than the clouds */ - animation: treescopypass 30s linear infinite; + animation: treescopypass 18s linear infinite; } @@ -179,7 +179,7 @@ #city { /* The city moves faster than the clouds but slower * than the trees */ - animation: cityscroll 35s linear infinite; + animation: cityscroll 20s linear infinite; } @keyframes citycopyscroll { @@ -190,7 +190,7 @@ #citycopy { /* The city moves faster than the clouds but slower * than the trees */ - animation: citycopyscroll 35s linear infinite; + animation: citycopyscroll 20s linear infinite; }