How to animate media queries

Default avatar.
June 24, 2013
How to animate media queries.

thumbnailResponsive design is everywhere, and whether you're using a framework or writing media queries yourself, some elements on your page are bound to move or scale.

If your media queries are based on browser dimensions and the browser is resized, then your elements will jump into place. Adding a little animation to those properties is a nice touch for any responsive site.

Today, I'm going to show you how easy it is to add that extra touch, by animating the width and opacity of elements between media queries.

The Layout

For this simple example we'll use a div, containing 3 smaller divs. The divs will scale according to the size of the browser window. The HTML is simple:

<div class='layout'>
<div class='box'></div>
<div class='box'></div>
<div class='box'></div>
</div>

Now, our main CSS will place the three boxes inside the main div and also, in line with a margin to the right:

.layout {
width:960px;
height:600px;
background:#b34d6f;
margin:auto;
}
.box {
width:300px;
height:200px;
margin-right:25px;
background:#4d77b3;
display:inline-block;
margin-top:50px;
}
.box:last-child {
margin-right:0px;
}

This is our main layout, without media queries, this layout will not adapt if the viewport changes. Now that we've got the basics in place, let's add the media queries.

Adding media queries

Media queries are used frequently nowadays. Most web designers understand them, but in case this is your first time, here's a quick refresher: media queries check the capability of the device you are using (width, orientation and resolution) and they run specific CSS if the conditions specified for the media query are met. In our example, we'll use two media queries that will check if the browser is smaller that 960px, and whether it's smaller than 660px. We'll then set the width of elements accordingly, we'll also hide the last child div so that the other two have more space:

@media screen and (max-width:960px) {
.layout {
width: 870px;
}
.box {
width:270px;
}
}
@media screen and (max-width: 660px) {
.layout {
width:570px;
}
.box {
width:170px;
}
.box:last-child {
opacity:0;
}
}

That's all we need for our media queries. Note that it's important that this code is placed beneath the original CSS code above so that the media queries overwrite the code above them. If you test your file now you'll see the size of the divs changing and the opacity of the last child div change when you resize the browser window.

You'll notice that to hide the last child div we're setting its opacity to 0 instead of setting it to display:none. That is because we want to be able to animate the property; opacity has many different degrees, whereas display is either true or false (and therefore can't be animated).

Adding the animation

CSS animations have proved to be really handy when performing these little animations that we used to run in jQuery, such as animating color, width and opacity.

Because we want the page to animate as a whole, we use the * CSS selector and set up our animation. CSS animations degrade gracefully, but you'll want to add the vendor prefixes too, so that there's as much support as possible:

*{
-webkit-transition:all 1s ease;
-moz-transition:all 1s ease;
-o-transition:all 1s ease;
transition:all 1s ease;
}

You can see the finished result here.

Conclusion

Adding simple animations like these, are a nice finishing touch to any website. A few lines of code adds a really nice polish to your responsive site.

Have you animated media queries in a project? What effects have you achieved? Let us know in the comments.

Featured image/thumbnail, scale image via Shutterstock.

Sara Vieira

Sara Vieira is a freelance Web Designer and Developer with a passion for HTML5/CSS3 and jQuery. You can follow her on twitter or check out her website.

Read Next

10+ Best Resources & Tools for Web Designers (2024 update)

Is searching for the best web design tools to suit your needs akin to having a recurring bad dream? Does each…

3 Essential Design Trends, April 2024

Ready to jump into some amazing new design ideas for Spring? Our roundup has everything from UX to color trends…

How to Plan Your First Successful Website

Planning a new website can be exciting and — if you’re anything like me — a little daunting. Whether you’re an…

15 Best New Fonts, March 2024

Welcome to March’s edition of our roundup of the best new fonts for designers. This month’s compilation includes…

LimeWire Developer APIs Herald a New Era of AI Integration

Generative AI is a fascinating technology. Far from the design killer some people feared, it is an empowering and…

20 Best New Websites, March 2024

Welcome to our pick of sites for March. This month’s collection tends towards the simple and clean, which goes to show…

Exciting New Tools for Designers, March 2024

The fast-paced world of design never stops turning, and staying ahead of the curve is essential for creatives. As…

Web Tech Trends to Watch in 2024 and Beyond

It hardly seems possible given the radical transformations we’ve seen over the last few decades, but the web design…

6 Best AI Productivity Apps in 2024

There’s no escaping it: if you want to be successful, you need to be productive. The more you work, the more you…

3 Essential Design Trends, February 2024

From atypical typefaces to neutral colors to unusual user patterns, there are plenty of new website design trends to…

Surviving the Leap from College to Real-World Design

So, you’ve finished college and are ready to showcase your design skills to the world. This is a pivotal moment that…

20 Mind-Bending Illusions That Will Make You Question Reality

Mind-bending videos. Divisive Images. Eye-straining visuals. This list of optical illusions has it all. Join us as we…