mo’ pixels mo’ problems: moving toward a resolution independent web

33
Mo’ Pixels Mo’ Problems Moving Toward a Resolution Independent Web Matt Gipson (@msg317) and Rita Troyer (@ritaelise) Indianapolis Museum of Art, USA MW2013 – Portland, OR

Upload: rita-troyer

Post on 18-Nov-2014

1.098 views

Category:

Design


0 download

DESCRIPTION

Since the introduction of high pixel density displays, the classic notion of the pixel, as well as the concept of a standard dpi, are fading. Web designers are no longer constrained to fixed-width web elements. With the evolution of modern display devices, designers are now responsible for thinking beyond layout and must also consider the impact of resolution. This paper will focus on various tools and techniques web designers can use to achieve resolution independence. Topics will include the pros and cons of delivery methods, resolution independent design alternatives, common responsive design techniques and more.

TRANSCRIPT

Page 1: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Mo’ Pixels Mo’ ProblemsMoving Toward a Resolution

Independent Web

Matt Gipson (@msg317) and Rita Troyer (@ritaelise)Indianapolis Museum of Art, USA

MW2013 – Portland, OR

Page 2: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

What is Resolution Independence?

“Resolution independence is a computing concept whereby elements on a computer screen are rendered at sizes independent from the pixel grid, resulting in a UI that is displayed at a consistent size, regardless of the size of the screen.”

Page 3: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

History: The Pixel

A device pixel (or physical pixel) is the tiniest physical unit in a display.

Page 4: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Screen Density

The number of device pixels on a physical surface. Often measured in pixels per inch (PPI).

Page 5: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Screen DensityCSS pixel ratio: 1.0

All non-Retina Macs, All non-Retina iOS devices, Acer Iconia A500, Samsung Galaxy Tab 10.1, Samsung Galaxy S

CSS pixel ratio: 1.3

Google Nexus 7

CSS Pixel Ratio: 1.5

Google Nexus S, Samsung Galaxy S II, HTC Desire, HTC Incredible S, HTC Velocity, HTC Sensation

CSS Pixel Ratio: 2.0

iPhone 4 -5, iPad 3-4, Macs with Retina displays, Google Galaxy Nexus, Google Nexus 4, Google Nexus 10Samsung Galaxy S III, Samsung Galaxy Note II, Sony Xperia SHTC One X

CSS Pixel Ratio: 3.0

HTC Butterfly

Page 6: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Implementation

Key factors: Performance and Audience

Don’t want to make assumptions about our users’ device performance capabilities

Page 7: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Implementation

• Designing With Code (CSS)

• Responsive Design• EMs / Percentages• CSS Media Queries• Hi Resolution Imagery• JavaScript• Vector Graphics (SVG)• Web fonts (@font-

face)

Page 8: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Design with CodeUse of CSS to replicate UI elements

Example: gradient fills, drop shadows, borders, outlines, opacity, etc.

Page 9: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Responsive DesignSeamless experience across devices

First, target a single column, mobile first approach and then work up / down

Page 10: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Using EMs / PercentagesUsing ems allows your designs to be resolution independent.

Relies on default browser settings to dictate a user’s body font size

Design for readability

Page 11: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

CSS Media QueriesAbility to target a variety of specific pixel ratios

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { /* Retina-specific stuff here */}@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { /* Retina-specific stuff here */}

@media (-webkit-min-device-pixel-ratio: 1.3), (min-resolution: 124.8dpi) { /* Retina-specific stuff here */}@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { /* Retina-specific stuff here */}

Page 12: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Hi Resolution ImageryBeautiful, sharp and polished user experience

Double the image size means 4 times the pixels

Can cause slow download times and negatively impact performance

Page 13: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

JavaScriptChecks each image on the page to see if there is a hi-res version on your server

If a high-res variant exists, the script will swap that image in-place

http://retina.js

Page 14: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Vector Graphics (SVG) Resolution independent, lightweight, and infinitely scalable

Support across all modern web browsers Much smaller file type than its bitmap counterparts

Page 15: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Web FontsCrisp, legible, resolution independent

Icon FontsFlexible

Each icon may be resized, colored, rotated and styled individually

Page 16: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Case Studies

Page 17: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

ima.tc/mopixels

Mo’ Pixels, Mo’ Problems Paper

• Goldilocksapproach.com• Three states:

multi column (too big)narrow column (too small)single column (just right)

• Use of ems• Web fonts• SVG Graphics

Page 18: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

ArtBabble.org

Page 19: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

ArtBabble.org

• Pictogram web font “Sociolico” used for social icon buttons

• Using CSS “background-size” property to downscale retina optimized images across the interface

• Responsive design

Page 20: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

ArtBabble.org

Web Font IconsPictogram web font “Sociolico” used for social icon buttons.

ul.social-links li.twitter a:after { content: "l"; font-family: 'socialicoregular’;}

Page 21: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

ArtBabble.org

CSS “background-size”Using CSS “background-size” property to downscale retina optimized images across the interface.

#nav ul#main-menu li { background: url(‘../images/arrow.png’) no-repeat right 13px; background-size: 9px 11px;

Page 22: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

ArtBabble.org

Responsive Design• Use of media queries to

adjust the layout according to device widths at 4 break points

• Shows what our site would look like on mobile devices without the media query (un-readable without pinching and panning)

Page 23: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

IMAMuseum.org

Page 24: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

IMAMuseum.org

CSS “background-size” property• Swapped retina background images with standard

72dpi graphics for older browsers

• Added media-queries to ensure high-density pixel displays are the only place high-res interface images are loaded

• Used an inline image on the page as opposed to a background image w/ CSS for the logo. Inline width and height on images are supported in older browsers

Page 25: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

IMAMuseum.org

CSS “background-size” property

Modern web browsers Old web browsers (IE8 and below)

Page 26: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

IMAMuseum.org

Design with Code (CSS)

• Only two images used on the right (the slideshow image, and logo)

• All shadows, borders with opacity, and background colors are achieved with CSS

Page 27: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

IMAMuseum.org

CSS Media Queries• Use of media queries to

adjust the layout according to device widths at 4 break points

• Shows what our site would look like on mobile devices without the media query (un-readable without pinching and panning)

Page 28: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

IMAMuseum.org

JavaScript• Use of JavaScript to detect what image needs to be

loaded• Custom JavaScript that works w/ Drupal. We created an

Image Cache derivative for retina vs. non-retina images.• Use data attribute to define the url path for each of our

image derivatives.

<img alt="" title="" class="imagecache imagecache-item-listing-rectangle retina-off" data-retina="http://www.imamuseum.org/sites/default/files/imagecache/item-listing-rectangle_retina/attachments/AiWeiweiNeverSorry.jpg" data-normal="http://www.imamuseum.org/sites/default/files/imagecache/item-listing-rectangle/attachments/AiWeiweiNeverSorry.jpg" src="” />

Page 29: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

AIC LaunchPad

Page 30: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

AIC LaunchPadHigh Resolution Imagery / Design with Code (CSS)• All UI elements created

through CSS

• Heavy on photographic elements, initially chose to use retina optimized images throughout

Page 31: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

AIC LaunchPad

High Resolution Imagery• Testing revealed if there

were more than 4 visible retina images, performance plummeted (even in the native app).

• As a compromise, we scaled the images back.

Page 32: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Future

• User experience is always number one.

• Avoid focusing on the device

• Device agnostic future

• Learn new techniques, stay curious.

Page 33: Mo’ Pixels Mo’ Problems: Moving Toward a Resolution Independent Web

Thank You

Questions?

Matt Gipson (@msg317) and Rita Troyer (@ritaelise)IMA Lab / Indianapolis Museum of Art, USA

MW2013 Thursday, April 18 2013