Tuesday, April 18, 2017

Why Art Direction is Critical to Responsive Design

Art direction plays a role in all facets of life. It’s especially important in advertising and magazines. The visuals in ads and magazines often are presented in a way that evokes an emotional reaction and leaves us with a lasting impression.

Have you ever seen an ad in a subway and you pause to look at it because it connects with you in a certain way?

Maybe you’re reading a magazine and you find yourself flipping over the same pages over and over because the colors, the typography and the photo focus just resonates with you?

Or perhaps you’ve seen different blog posts with similar content, one of which stood out because it was more visually appealing, with a carefully selected font weight, the perfect amount of whitespace, and well spaced paragraphs.

Art direction has made all of these experiences possible.

Art direction is a filter for making judgments; you pass every design choice through it. Start by determining the overall emotion. All the copy, photography, UI elements, buttons, and the kitchen sink should be pinged against this ideal. I like to think of it as the Magic Kaleidoscope Looking Glass. It helps to determine which path I need to take when struggling with design decisions. — Christopher Cashdollar, Creative Director, Happy Cog

Art direction also plays a vital role in the world of web design. Designers and developers create responsive designs that involve a lot of imagery. In the realm of responsive design, the role of art direction can’t be over-emphasized; from the flow of content on web pages, to placement of ad banners, to the way images are displayed at different resolutions.

Design is the how. It’s the foundation of all communication, the process and production of typography, color, scale and placement. Art direction is the why. It’s the concept and decisions that wrap itself around the entire product. — Jarrod Riddle, Senior Art Director, Big Spaceship

Art Direction in Ads

Let’s look at some examples of art direction in ads. Below are some ads with astonishing art direction.

Fedex: China – Australia

Zoo Safari: Lion

Kapiti: Designer Ice Cream

Fedex: Always First Truck

Plant for the Planet: Factory

Looking at these ad banners creates an emotional connection and evokes an experience that I’ll not soon forget. Yes, that’s the power of art direction!

What is Art Direction in Responsive Web Design?

While these are great examples of art design in advertising, our focus is on delivering impactful images in responsive web design. So, what is art direction in this regard and how does it affect responsive images on your web platforms?

Art direction is a technique for drawing attention to the most important parts, or targeting specific features of an image, even when it’s viewed on different devices or platforms. Consider this example:

Source: ResponsiveImages.org

The full image can be seen on a wide display, 2560 x 1600 for example. But when viewed on an iPad or an iPhone, the dog is is the central focus. For this image, the art director — such as the designer, developer or a visual director, wants the viewers to see more of the dog than any other object in that image.

 

Let’s take a look at another example in action. It is an art-directed front page created by Eric Portis.

You can check it out here : http://ift.tt/2deu75G

So, right now you might be thinking, “Wow, this is cool” or “This is awesome.” and wondering how you might implement this yourself and give viewers a captivating art-directed page?

Crafting Art-Directed Responsive Images

Doing so doesn’t need to be complicated. To achieve this on your own, you would have to manually crop individual images to fit them on various resolutions. Another alternative is to go the route of cropping all images to focus on the center of the image. And as you might be aware already,  important content can be lost trying to use the “one size fits all” approach.

One of the easiest ways to go about is to take advantage of Cloudinary’s face detection, cropping, resizing and optimization capabilities to provide art-directed images. Let’s start with this image below:

Serena Williams is centered in this image (1600 x 700)

We will apply various properties to this image and see the results, before putting it together using a <picture> and <source> to see the full impact of art direction. New to the <picture> element? Check out this excellent post on how the <picture> element works.

Cloudinary enables us to supply a certain aspect ratio like so:

Source: http://ift.tt/2pcZqnt

Let’s crop the image by using the c_fill parameter that Cloudinary provides. It works like background-fit: cover in CSS. You’ll discover that the image will be stretched to fit the width. Notice the difference?

Source: http://ift.tt/2pcUmQj

When cropping, Cloudinary focuses on an image’s center by default. Now, focusing on the center doesn’t always work like I mentioned earlier. An example would illustrate my point better.

Check this cute cat below:

We applied the “c_fill” filter and it yanked out a greater part of the cat image and left us with the background. Is this what we want? Definitely not!

Source: http://ift.tt/2cNhbTc

Cropping it on another point using the gravity property such as g_auto gives us our desired output like so:

Source: http://ift.tt/2dnOQjV

That’s what I’m talking about. Whoop! Whoop!

Now back to our original example, let’s crop in on another point using the gravity property like so:

Using g_south, you can see how it shows the bottom part of the image and crops off the head

Source: http://ift.tt/2pcVxPx

Using g_north, you can see how it shows the top part and crops off the bottom.

Source: http://ift.tt/2pcUorp

But by default, we can see a more focused image.

Source: http://ift.tt/2pd4gkG

On very small devices, we can take advantage of the Cloudinary c_thumb parameter that tries to focus on in on the image with an aspect ration of 1:1 like so:

Source: http://ift.tt/2pcYsYt

Visible Art Direction

Now, let’s see how this works in a web page. Create an `index.html` file and insert this code in it like so:

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Art Direction</title>
</head>
<body>
<picture>
<!-- wide crop -->
 <source
   media="(min-width: 600px)"
   srcset="http://ift.tt/2pcWLdO 800w,
           http://ift.tt/2pwWwaj 1600w"
   sizes="100vw" />

 <!-- standard crop -->
 <img
   srcset="http://ift.tt/2pcPRVI 800w,
           http://ift.tt/2px0uQd 1600w"
   src="http://ift.tt/2ooHOAi"
   alt="Serena Williams Jumping"
   sizes="100vw" />

</picture>
</body>
</html>

Browsers will use the srcset to select the image to load based on the viewport size and display density.

We have already defined the breakpoint in the source tag. Once the browser is opened on larger screens, the image visually adapts for a larger viewport.

Check out the flow in your browser.

Conclusion

A combination of the <picture> and <source> tags helped us craft art-directed responsive images. Art direction brings out the best in your ad and web platforms, it establishes a connection between the user and the website or ad banner. With Cloudinary you can easily integrate art direction in your process flow.

 

[– This is an advertorial on behalf of Cloudinary –]

Bundle of 400+ High Quality Vector Textures from Ultrashock – only $24!

Source

p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}

from Webdesigner Depot http://ift.tt/2oI7olP




from WordPress http://ift.tt/2pxemtB

No comments:

Post a Comment