Naming Things is Hard

Thinking through a <picture> element

TL;DR

Responsive images. Challenging, but rewarding.

This post might feel a little messy because I've been learning this stuff in a fairly messy way. What I'm taking away from my efforts, though, is that responsive images are complex, and that slowing down, thinking through specific design challenges, simplifying my needs or goals as much as possible, and then working toward specific design goals, building up solutions piece-by-piece along the way, has been critical to my understanding of how these things work.

That said, I'm still glad I jumped in head first and splashed around for a while, at first, even if it kind of felt like drowning, now and then. If for no other reason, it gave me a good idea just how deep the waters go.

Introduction  

I've been experimenting with the <picture> element. I love the idea of it. The ability to art direct photos in a responsive environment is appealing. Moving from idea to practice has been trickier. After stumbling through a few complicated use cases—because of course I wanted to have my images be responsive to window aspect ratios, of course—I've come to realize, a, that I need to slow my roll, and, b, that I need good ways to think through responsive image solutions from the ground up.

I'll note that Eric Portis's A List Apart article, "Responsive Images in Practice," has been my starting point for most all that follows. Errors in translating the substance of that article into a (semi-pseudo-)functional methodology(-in-development) are all mine.

Here's where I'm at today, for the moment.

It starts with a question.

Where am I going with this?

I like designing in code. It fits well with my interest in just kind of jumping into a thing and seeing what happens. It's a messy approach that doesn't work for every project or audience, but when I get the chance, when it makes sense and the stars align, the flexibility of working close to the proverbial metal, knowing that I'm doing something usable out of the gate, that I'm actually clicking and tapping on the thing itself instead of looking at some static representation of something I might be able to tap and click on later—it feels good.

Trying that approach in learning how to work with responsive images proved troublesome, however. It's the good kind of trouble, though; the stumbles have been educational, helping reveal some of the required complexity and how easily that complexity compounds itself.

So to move forward, I've had to step back, and literally ask myself where I'm going with this. What's my goal? What are these images doing

Answers to those questions lie a bit further back.

What is this thing?

What am I doing, anyway? Where are the images being used?

I've just been implementing some responsive images for a specific project, so I can offer a concrete example here. For this project, our target page is a lengthy article with a number of primary sections, some short, some long and/or broken up into additional subsections. The goal for the images is to bring some additional color and context to the story the page is telling, and to break up the flow of the text, so it doesn't feel like an infinite wall of text.

The text is formatted as a centered column, with margins that keep the text from hitting the edge of the screen, and max-widths that keep line lengths generally in the 45 to 75 character width for wider screens and windows. There's a little bit of responsive font sizing going on, sizing the text up a bit as the screen gets wider.

I've got a handful of wrapper classes I can deploy as needed. For this page, each major section is in a separate <section> tag, each with the same wrapper class. This lets me do other things between sections that break out of the primary column width. I can, of course, also pretty easily deploy images inside of the sections themselves, as well.

With all that in mind, I plan on loading up the page with two styles of images, that I believe will work with my current set-up to meet the original goals:

Based on my troublesome past experience, I plan on keeping these two styles simple and, I hope, easily executable, so I have a better chance of shipping something sometime this millennium—knowing I can always come back and spiral things further and more cleverly out of control later.

Okay, cool, so how do these work?

"Good question," he said, while batting a broken, chipped-up magic wand against the edge of his desk.

Keeping with the theme of working toward defined ends, my approach to what follows comes down to, first, clearly describing the behavior of my images, and then, second, drafting up code and creating assets that make that behavior happen.

Which is a long-winded way of saying I'm doing the design-develop thing.

It's also fair to say that what follows is a (somewhat) cleaner reconstruction of my actual process, which involved more fits and starts and raised eyebrows and mumbling/stuttering/talking to myself like a crazy person.

Which is...another long-winded way of saying, I did the design-develop thing.

There does wind up being more math involved than might be strictly necessary or actually even desirable, I'm not sure. I'm not sharing any of it here, but it's worth noting, because it reminds me that I feel like there are plenty of bits of this process I'm certain I'd like to refactor for myself going forward. (But then it just generally feels like there's a lot of things I don't fully understand any time I do anything anymore these days—I'm pretty sure that's written into my job description.)

Behaviors

In order to move forward, I know that for each image style, I want to know how the image will interact with my existing responsive styles and breakpoints. What does each image actually do on the screen? From there, how many crops or sizes of each image am I going to need, how many files on disk? What do those crops look like?

It's also useful to remind myself that I'm trying to work mobile first, so I need to think about the view of the site as it starts on a phone or in a smaller window, and work my way up toward the widescreen view of the site that I'm tend to habitually look at when I'm developing.

Dividers

For my divider images, they'll start by bleeding off the left and right edges of the screen. This means they'll clearly help separate major sections from each other; they will only appear between major sections, like big colorful punctuation marks. They'll scale up with the screen or window width. When we hit the text column's max-width, we'll keep the dividers edge-to-edge for a while. They can feel a little dramatic; it'll be cool. That said, I'm going to cap them with a max-width of their own, so they don't grow overpowering.

We'll start off with something in the 4:3 aspect ratio area, so we have a little more room to show some detail at smaller sizes. At wider screen widths, after some to-be-determined break point, we'll go to a more 16:9-ish crop, for a more cinematic feel.

I do remember know why I want so badly to master aspect-ratio media queries. I also remember how complex that gets. I step back from the brink of madness. My goal is to be just cool enough for right now, to incorporate a healthy amount of complexity out of the gate.

Floaters

The floater images will start off to the full width of the text column, not the screen or window. They'll break up the text this way but the placement is going to be a bit more flexible. 

As we scale our width up, I'll look for a width that feels right, a point where it feels like the text has room to accommodate the float, at which point the images will slide back to half the width of the text column and float into the next paragraph, either to the right or left. Because we're kicking the float in before we reach the max-width of the text column, the column width will keep sliding for a bit—and so the image size will keep scaling as well.

As an aside: this half-width measurement is a bit of swag, because I have to start somewhere. It has the side effect of keeping the math clean. I know I could go wider, I could go narrower, I could incorporate multiple widths depending on the column width. I could also be anticipating landscape vs. portrait orientation photos, but at some point I decide to stick with landscape orientation on all these photos, and as it turns out, half-width does work pretty well for the design, so it sticks.

Once we hit that max width, we'll go ahead and lock the image size in accordingly. Once we're dealing with a known text column width, so we can set the exact anticipated width of the image to match. From there, for bonus fancy points, as the window gets wider, and more white space opens up on either side of the text column, we can push the image outward into that white space a bit, to break it up in a hopefully interesting way.

I considered scaling the size of the image up another notch or two at some point, really filling out the white space. But I'm already getting dizzy, and the clock is ticking.

Assets and Code Tools

On the flip side of knowing what I want the images to do, it's helpful to know what my tools look like in the code, to know how I'm going to implement the desired behaviors. Specifically, where does all that stuff that lives inside the picture element and srcset and sizes and media attributes come into play? Where do my concerns separate themselves when it feels like I'm describing style and behavior in my HTML?

A little bit of hand-waving here, because this post is long: my basic approach comes down to realizing style and behavior are all still essentially handled via my CSS, and that this stuff I'm putting into the HTML partially about browser efficiency, partially about picking the right crop. We want the browser to know which file asset to grab, as it's parsing through my HTML while eagerly anticipating the CSS that's still coming down the pipe to style it. Without these details the browser would just be staring at this image element with no real idea what to do with it. Not terribly productive. That picking the right crop bit is a bit magical, though, it's fair to say; once the style and behavior of the image is CSS'ed up, the picture element is going to help us match our vision for the design by providing the correct crop (or file asset) to fill that space. So there is a very close relation between the two sets of concerns.

To that end, I need to set up classes on the image elements and wrappers, when necessary, that handle the behaviors of the images. The CSS is going to tell the images how wide they're allowed to be, when to float or not float, what the spacing around them is going to be like, and so forth, all that good stuff just as usual. Everything that's happening in the picture element is helping the browser know which of my (many, so many) image files it should grab to appropriately fill those behaviors.

Technical Experimenting

What this last bit unlocks for me, as I start to move on to code—which I've come to realize I need to do before I open Photoshop and start making my assets—is the recognition that I can, or should, start implementation with basic placeholder images—just good old fashioned <img> elements—before I fancy them up with all my extra attributes and asset files. This helps me figure out what all numbers I need and where to put them all so that the final product will work. 

Had I better prepared this post, I'd have a super cool time-lapse view of my entire development process I could easily share. But I didn't prepare, and this part really is kind of messy anyway, and I'm having a heck of a time reconstructing it for myself in any sort of convenient linear fashion, so, instead, here's a bullet list of scattered recollections:

There's certainly more I can add to this list. But I'd probably also be better off at that point creating an actual tutorial and walking through some specific code. So I won't. Suffice it to say that at the end of all this, I have lots of numbers all over the place, which I need as I move into asset creation.

Photoshopping

This is another point where an entire tutorial is probably in order, but I'll keep it brief and just point out that the previous step gave me the numbers I need to work with in Photoshop. It's all right there in my Placehold.it images: by creating this functional demo with well-labelled placeholder images, I can use those dimensions to create precise artboards in Photoshop which I know are going to result in image assets that are sized exactly how I need them to be. Cool! (How's that for working in code.)

A couple stray observations from this phase:

With everything organized cleanly, more or less, dropping a folder full of folders into my site build and fixing up the image links is, relatively speaking, no big deal.

Final product

While it's not quite done-done—I've still got some reorganizing to do and some retina versions to link in and all the other things in the world I've ever wanted to try doingyou can see where this has gone over here

The divider images are fairly straight-forward, with a single primary breakpoint and two resulting crops; the floaters are a bit more complex, with a major breakpoint that controls the float, and two crops above and two crops below that breakpoint (one crop actually being re-used between those two sets) to help control the amount of detail visible in the image. The floaters all use the same aspect ratio, while the dividers' aspect ratio changes at the break point. It feels like I could be even more selective and granular with how many crops and file sizes I offer, but there's some pro-and-con weighing that has to be done there, as well.

Blog images

Highly incomplete chicken scratches used to figure out system details as needed.

tags

Home & About & Micro.blog & Feed (Atom)