How to create an animated pickup in CSS and HTML

By George Phillips · 19 Dec 2014
How to create an animated pickup in CSS and HTML

This week I came across the 7mml website and I loved the loaded symbol. An animated car with a scrolling background. It was rather sluggish so I looked at how it was built. It was actually built using a large background image with JavaScript changing the background position.

What is it?

I am going to rebuild the car/pickup in HTML, SVG and CSS. I was going to build it all in CSS but as it is a complicated shape SVG is probably better. Here's my version:

illustration of white truck used for animating
illustration of white truck frame used for animating
<div class="truck">
<div class="body">
<img src="truck-under.svg">
<div class="shine"></div>
<img src="truck-frame.svg" class="frame">
</div>

<div class="speed-thingy"></div>
<div class="speed-thingy second"></div>
<div class="shadow"></div>

<div class="wheel back"></div>
<div class="wheel front"></div>
</div>

Let's break it down.

The Wheels

I started building the car using just HTML and CSS so theses are circles built using border-radius. I used the :before and :after pseudo-elements too for the inner circles. You may be asking "Why did you not use a border on the inner circle?" - if I used border I would not be able to use percentage widths. Then I added an infinite spin animation which works well because of the slightly inconsistent size;

illustration of white truck frame used for animating
@keyframes spin {
0% { transform: rotate(0); }
100% { transform: rotate(360deg); }
}

.wheel,
.wheel:after,
.wheel:before
{
bottom: -20%;
width: 12.8%;
height: 46.38%;
border-radius: 100%;
background: #1e2327;
}

.wheel {
left: 21.5%;
-webkit-animation: spin 0.4s infinite linear;
animation: spin 0.4s infinite linear;
}

.wheel.front {
left: 82%;
}

.wheel:after,
.wheel:before
{
content: "";
position: absolute;
display: block;
top: 20%;
left: 20%;
width: 60%;
height: 60%;
}

.wheel:before {
background: #aaa;
}

.wheel:after {
top: 40%;
left: 40%;
width: 20%;
height: 20%;
}

The Body

I started building the body with HTML elements and CSS but felt I was using the wrong tool for the job. I decided to use SVG instead. There are actually two assets to be exact and I overlay one on the other with a slight rotation and vertical transition to give it a bit of character.

illustration of white truck used for animating
illustration of white truck frame used for animating
@keyframes bobbing {
0%{
transform: rotate(0) translateY(0);
}
100%{
transform: rotate(0.1deg) translateY(5px);
}
}

.body {
width: 100%;
position: relative;
transform-origin: right center;
animation: bobbing 0.2s infinite ease-in-out forwards alternate;
}

.frame {
position: relative;
}

.truck img {
width: 100%;
height: auto;
top: 0;
left: 0;
margin: 0;
}

The Shine

This uses the same effect as the Facebook content placeholder. It has the bobble animation as it's placed inside the .body of the truck. The first image is to show the gradient and the shape which is achieved using transforms and a linear gradient. The second one has an animation applied.

@keyframes shine {
0%{
opacity: 0.1;
background-position: 50px top;
}
30% { opacity: 1; }
50%, 100%{
opacity: 0.2;
background-position: -500px 0;
}
}

.shine {
/* Position it in the gap */
width: 67%;
height: 37%;
left: 9%;
top: 6%;

/* Shape of the div to fit the windows */
transform: skew(33deg, 1deg);
border-radius: 56px 100px 20px 0;

/* The background */
background: linear-gradient(to right, transparent 76%, rgba(255,255,255,0.8) 78%, rgba(255,255,255,0.8) 96%, transparent 98%);
background-repeat: no-repeat;
background-size: cover;

/* The animation */
animation: shine 3s infinite ease forwards;
}

The Speed Things

These are simple shrinking and growing divs.

illustration of white truck frame used for animating
@keyframes thingy {
0%{
transform: translateX(0);
width: 0;
opacity: 0;
}
10%{
width: 10%;
opacity: 1;
}
30%, 100%{
transform: translateX(-250px);
width: 0;
opacity: 0;
}
}

.speed-thingy {
position: absolute;
width: 20px;
border-radius: 10px;
height: 5%;
background: #fff;
top: -10%;
left: 50%;
animation: thingy 3s infinite ease forwards;
}

.speed-thingy.second {
top: 50%;
left: 30%;
animation-delay: 0.1s;
}

A Shadow to top it all off

This makes the bobbing effect seem more realistic and shows a platform for the wheels to sit on. We want it to stay still at the front so we change the transform origin to the front. Once that's done we scale it ever so slightly with timing to match the body.

<img src="https://cc-dam.imgix.net/blog/assets/blog/assets/blog/truck-frame.svg"alt="illustration of white truck frame used for animating" width="500" height="136" class="frame">
@keyframes shadow {
0%{
transform: scale(1);
}
100%{
transform: scale(1.01);
}
}

.shadow {
width: 90%;
border-radius: 100%;
height: 20px;
bottom: -25%;
left: 5%;
background: rgba(0,0,0,0.1);
animation: shadow 0.2s infinite ease-in-out forwards alternate;
transform-origin: right center;
}

All Together Again

illustration of white truck used for animating
<img src="/assets/blog/truck-frame.svg"alt="illustration of white truck frame used for animating" width="500" height="136" class="frame">

Why would I ever use this?

Using CSS animations rather than sprite sheets will give you:

  • A crisp look on all screen resolutions
  • Seamless tweening between states.
  • Flexibility to reuse work (It's much easier to change code then recreate assets)

That's it

I have altered the original quite a bit and the key with these animations was subtlety. Each part adds up to a make it look like it is traveling forward even without the background animations. Going back to Tim's one word idea, for animations it would be to "subtlety" or "reactive". Animations should not surprise the user, they should feel natural and help convey a real world metaphor. If an animation is off continued use will annoy the user not improve their experience. Hope you enjoyed this deconstruction, comment below if you have any questions.

Launch your website today

Give your content team full autonomy on your developer-approved tech stack with CloudCannon.

Get started free!

You might also like: