Skip to content

Instantly share code, notes, and snippets.

@franky47
Last active February 22, 2019 08:57
Show Gist options
  • Save franky47/8c660fbe2bc8e7ae376f76c0abc12093 to your computer and use it in GitHub Desktop.
Save franky47/8c660fbe2bc8e7ae376f76c0abc12093 to your computer and use it in GitHub Desktop.

upperoi

Unsplash practical progressively enhanced responsive optimised images

Unsplash has the best free pictures out there.

However, their delivery is painful if you want to follow all the best practices:

  • Optimised images, to avoid sending useless bytes over the wire
  • Responsive to deliver the right image for the right screen size
  • Progressive enhancing, to get that nice blur-in à la Medium

Steps to do that:

  1. Pick an image on Unsplash
  2. Pass it through Responsive Breakpoints
  3. Download and rename the files (default name is way too long, {unsplashID}_w_{width}.jpg will do)
  4. Generate a blur-in placeholder
  5. Generate the HTML code
  6. Insert in your DOM

Using the Unsplash API

It could be possible to generate the right HTML code directly from the Unsplash API: https://unsplash.com/documentation#dynamically-resizable-images

It would not benefit from the 20kB increments provided by Responsive Breakpoints, but it would allow building a URL-only HTML output (images are hosted by Unsplash).

To host or not to host

Hosting images yourself (ie: copy from Unsplash and host along with the rest of the site):

Pros:

  • If the image is pulled out of Unsplash, content does not break
  • Full control over the quality and delivery of the image (can be a cons too)
  • No rate-limiting (although currently Unsplash has no rate limiting on images, it could be in the future)

Cons:

  • Increased bandwidth on our server (although cache can help)
  • Increase in storage, duplication of data and
  • Tracking ?
  • Dependence over another server to be up and running

URL Farm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment