Using icon fonts
A handy walkthrough of using icon fonts. The examples here use the excellent IcoMoon service
A handy walkthrough of using icon fonts. The examples here use the excellent IcoMoon service
Some good thinking from Jason here. In a roundabout way, he’s saying that when it comes to responsive images—as with just about every other aspect of web development—the answer is …it depends.
Some thoughts (and code) on responsive images.
Celebrating 125 years of National Geographic, this Tumblr blog is a curated collection of photography from the archives. Many of the pictures are being published for the first time.
Ay!
Chris takes a look at all the different ways you can use SVG today.
Slides, videos, and links from Paul’s presentation at the Responsive Day Out.
A very hand tip from Ben on using SVG background images with a PNG fallback for IE8 and below.
Funny and painful in equal measure.
Everything you ever wanted to know about using SVG today.
Communal satellite eyes. A Mac screensaver is also available.
Gorgeous colour-processed images from NASA probes. I could stare at the fountains of Enceladus all day.
A cute little service for mocking up pictures of your site being used on different devices. Just drag and drop a screenshot on to an image.
A well-reasoned argument for tackling image optimisation on the server, using content-type negotiation.
Gorgeous pictures from the Suomi satellite, just released by NASA
This is a great free service for generating small subsetted icon fonts. Launch the app and have a play around — you can choose from the icons provided or you can import your own SVG shapes.
Nice touch: you can get the resulting font (mapped to your choice of unicode characters) base-64 encoded for your stylesheet.
You’ve probably seen this already, but it’s really worth bearing in mind: when you’re scaling up JPGs for retina display you can safely reduce the image quality by quite a lot—to the point of getting the exact same file size as a higher quality image that’s half the size.
At least one of these will probably drive you crazy.
The kickass articles just keep on comin’. This one from Dave is a great overview of options for dealing with images in responsive designs.
A really great article from Paul that simultaneously takes a high-level view of the web while also focusing on the details. A lot of work went into this.
A great collection of layout, navigation, and interaction patterns for responsive sites, delivered by Brad.
The not-so-new-but-hella-fun aesthetic.
This looks like a really handy tool for reducing the file size of JPEGs without any perceptible loss of quality (in much the same way that ImageOptim works for PNGs)—available as a Mac app or an installable web service.
Yet another brilliant technique from Dave. The only caveat is that it uses background images rather than img elements, but it’s still very powerful (and very clever).
The Old Aesthetic. It’s eighties-tastic!
Here’s a brainbuster for ya: a single file that renders both as HTML and as a JPEG. As an HTML page, it even contains an img element with a src of …itself!
Compare the “view source” output with the generated source output to see it’s being interpreted.
Aegir’s portfolio is a thing of a beauty on every screen size.
Aegir is doing some very smart image enhancement in his (responsive) portfolio. Here’s the explanation.
Wilto does an excellent job of summarising the current state of responsive images, highlighting Florian Rivoal’s compromise proposal that combines the best of the picture element with the best of srcset.
Some good practical advice on improving performance. This should all be familiar to you, but it’s always worth repeating.
A nice round-up of the issues around responsive images and their potential solutions.
If you’re adding some noise texture to your backgrounds, this little service might be handy. I usually base-64 encode these kinds of background images: it would be nice to see that added as an option here.
A run-down of the various approaches to the responsive images problem, concluding that this is something that needs to be solved in the image format.
Jason outlines the real challenge to every proposed solution for responsive images: they just don’t jibe with the way that browsers (quite rightly) pre-fetch images.
A well thought-out evaluation on responsive images from Bridget.
Combine the lowsrc-like image technique I blogged about with the conditional CSS technique I blogged about and this is the result.
Trent offers some excellent advice for dealing with the effects of the iPad’s retina display on your websites. That advice is: don’t panic.
An idea for handling responsive images not with a new format, but with an existing one: progressive JPGs.
Some practical advice for optimising your images on the web.
The Old Aesthetic.
This responsive image technique has a lot of moving parts but it seems pretty solid.
Wilto gives a thorough explanation of the state of things with responsive images, particularly the work being done at the Responsive Images Community Group at the W3C.
Tim has published the results of a whole bunch of testing he did on how different browsers deal with hidden or replaced images.
Luke rounds up some of the alternatives to bitmap-based images—an increasingly important topic for “resolutionary” “retina’ displays (bleurgh!).
From Kornel, the genius who gave us ImageOptim, comes another Mac desktop tool for optimising PNGs, this time converting 24-bit PNG to 8-bit with full alpha channel.
Elliot jots down some of the issues discussed at the responsive summit.
Here’s a great braindump from Paul following the Responsive Summit, detailing multiple ways of potentially tackling the issue of responsive images.
Josh goes through the talking points from the recent Responsive Summit he attended. Sounds like it was a great get-together.
Here’s a new angle on tackling the responsive image problem: what if the file format itself could specify multiple image sizes?
There’s a W3C community group now for looking at the responsive images question.
A terrific article from Wilto detailing the thinking that went into the Boston Globe’s responsive image techniques and how browser pre-caching is now throwing a spanner in the works.
2951 images at 12 frames per second. Each image is the “related image” of the image before according to Google image search. The first image is simply a transparent PNG.
Some very interesting results from testing background image downloads contained within media queries or overridden with media queries: it turns out that, in iOS at least, the browser is getting smarter and smarter.
Jason continues his look at responsive images techniques by diving into the nitty-gritty of the various options out there.
A visual representation of the design process.
This isn’t recommended as a robust means of delivering responsive images, but it’s still quite clever: using media queries to pass information to the server about the viewport size.
Jason takes a high-level look at tackling mobile-first responsive images (his next post will dig into the details). This is a really good summation of current thinking. Be sure to read the comments too: Andy chimes in with his experiences.
Unfortunately this article from PPK is flawed from the start: his first point (upon which all the subsequent points are based) is fundamentally flawed:
Right now responsive design is graceful degradation: design something for desktop and tablet, and remove stuff for mobile.
That’s not the way I’m doing responsive design. Responsible responsive design marries it with a mobile first approach (or more accurately, content first).
Now this is intriguing: putting your default images inside a noscript element, then do your viewport measuring and image-swapping before removing the noscript tags. But when I tried this a while back, I couldn’t get access to the noscript elements with JavaScript (which makes sense, when you think about it).
I wonder if it’s the use of class names or jQuery that allows it to work here?
If you’re trying to retrofit an existing desktop-centric site for small screens, this server-side image-resizing technique might be useful but is definitely not the right tool for a content-out, small-screen-first approach.
This is something we’ve previously had to build from scratch at Clearleft so it’s nice to see an off-the-shelf solution.
Here’s an approach to responsive images in the Expression Engine CMS …but I fundamentally disagree with the UA-sniffing required.
Once there’s better support for the CSS3 attr() function, this could be a nifty way of handling responsive images (although large-screen user-agents will download more than one image).
Another approach to responsive images, this time using background images. The disadvantage is that large-screen devices will download both images. Still, pretty darn clever.
A well-thought approach to responsive images (although personally, I would use cookies to store the dimensions of the viewport rather than the dimensions of the screen).
Josh explains the pros and cons of embedding background images in your CSS using base 64 encoding.
A lovely bit of experimentation with prime numbers and multiple background images.
Testing ways of only displaying background images on large screens whilst ensuring that they aren’t downloaded for smaller screens.
Some of the more unusual moments in time that have been captured by Google Street View. There’s something very Gibsonian about this.
I may have to start using this for placeholder images—it won’t be distracting, right?
Some very smart ideas here for responsively enhancing image requests.
Look what Norm! built: it's another placeholder image service, but this is one that you can install and run on your own machine.
A fantastic bit of image manipulation JavaScript from Dave.
A clever technique to create the effect of multiple background images using the :before and :after pseudo-elements.
A very handy GUI for figuring out the somewhat complicated syntax of border-image in CSS3.
This will be very, very handy for my day-to-day front end development work.
Finding the sweet spot between realism and abstraction in interface elements.
I'm kicking myself that I didn't know about this little Fireworks trick.
There is something utterly hypnotic and disturbing about these three-frame looping animations.
A set of icons (in different sizes) from various trendy websites to use in your designs.
Classic photographs recreated in Lego.
Ethan follows up his Fluid Grids article with an equally excellent piece on resizing images.
A beautiful use of the Flickr API that allows you to browse photos with a colour picker.
The Fair Use Project needs your help in defending Shepard Fairey. Have you seen other photographs similar to the iconic Obama "hope" pose? Send 'em to shep_use@pobox.com.
"I love this graph because in one small space, it shows the time of Sunrise and Sunset across the entire world throughout all Latitudes throughout the entire year of this tilted planet."
A great little Flickr slideshow from Phil Hawksworth.
Gez lays out the case for and against keeping the alt attribute mandatory in HTML5. If he's missed anything, add a comment.
The circlemakers work with vegetation. Andy Goldsworthy works with the landscape. Jim Denevan works with sand.
A collection of network diagrams and visualisations from the simple to the sublime.
Friendlier HTTP errors.
The latest website from Derek Powazek allows artists and businesses to hook up. Nicely done.
A collection of beautiful illustrations scanned from a flight-training manual.
A great little tool for creating favicons.
Actually, maybe this is the best picture on the internet. Take this picture brother, may it serve you well.
This blogging Tory MP is stealing someone's bandwidth for the photo in this post. Said photo has been subtly altered. Hilarity ensues in the comments.
This is the first picture of Earth taken from space, specifically from a V2 rocket 60 miles up.
Another stunning image from the Hubble telescope. This image is heart-stoppingly beautiful.
Apparently I look like Lee Harvey Oswald and Keanu Reeves. Whoa! Cameron Adams, on the other hand, looks like a bunch of girls (a bunch of hot girls, admittedly).
A nice collection of royalty free texture photos using the Flickr API.
Got Safari? Try resizing this page.
This is the plain vanilla look.
You can subscribe to the RSS feed of links.