responsive web design - web & php conference - 2013-09-18

Post on 18-Oct-2014

3.681 Views

Category:

Technology

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

There is no mobile Web, there is no desktop Web, and there is no tablet Web. We view the same Web just in different ways. So how do we do it? By getting rid of our fixed-width, device-specific approaches and use Responsive Web Design techniques. This session will focus on what is Responsive Web Design and how you can use his 3-pronged approach on your current apps today which will also adapt to new devices in the future.

TRANSCRIPT

Responsive Web Design

Frédéric HarperSenior Technical Evangelist @ Mozilla@fharper | outofcomfortzone.net

2013-0

9-1

8

Questions

http://wpc13.cnf.io/sessions/129

How we view the web today…• The Desktop Browser• Mobile Browsers• Tablet form-factors• Televisions• Game Consoles• More…• So what’s the problem?

The Anti-Pattern

Responsive Web Designs

Responsive Web Design

• Thinking of the user’s needs instead of

ours.

• Adapt to various device capabilities instead

of configurations.

• Help future-proof our sites.

The way to go

Elements of Responsive Web Design• A flexible, grid-based layout,

• Flexible images and media,

• Media queries.

• Something else.

Flexible, Grid-based Layout

Ok, so what’s the problem?

• Non-responsive sites are no fun.

• Fixed-width sites are not the best experiences.

• Design tools tend to use pixels.

• Sometimes a pixel does not equal a pixel.

• So how do we turn pixels to their em counterparts?

𝚫 𝒚𝚫 𝒙

≈ 𝐥𝐢𝐦𝒏→∞ (𝟏+𝟏

𝒏 )𝒏

×−𝒃±√𝒃𝟐−𝟒𝒂𝒄

𝟐𝒂± 𝒇 (𝒙 )=𝒂𝟎+∑

𝒏=𝟏

(𝒂𝒏𝐜𝐨𝐬𝒏𝝅 𝒙𝑳

+𝒃𝒏𝐬𝐢𝐧𝒏𝝅 𝒙𝑳 )

Pixels to Ems Algorithm

target context result÷ ¿

target context result÷ ¿

h1 { font-size: 24px;}

24 / 16 = 1.5h1 { font-size: 1.5em;}

h1 a { font-size: 11px;}

11 / 24 = 0.458333333+

h1 a { font: 0.458333333+;}

32

Responsive Web Design READ MORE >>

1

em

%

And the Grid?#page { margin: 36px auto; width: 960px;}.blog { margin: 0 auto 53px; width: 900px;}.blog .main { float: left; width: 566px;}.blog .other { float:right; width: 331px;}

#page { margin: 36px auto; width: 90%;}.blog { margin: 0 auto 53px; width: 93.75%; /* 900/960 */}.blog .main { float: left; width: 62.88+%;}.blog .other { float:right; width: 36.77+%;}

.blog { width: 900/960;}.blog .main { width: 566/900;}.blog .other { width: 331/900;}

target context result÷ ¿

Flexible Images and Media

A Simple Solution

Works on images, as well as other media like <video>.

img { max-width: 100%;}

Another PossibilityFilament Group –

depends on cookies and JavaScript

Responsive images

Picture element, draft proposed

<picture> <source media="(min-width: 40em)" srcset="big.jpg 1x, big-hd.jpg 2x"> <source srcset="small.jpg 1x, small-hd.jpg 2x"> <img src="fallback.jpg" alt=""></picture>

srcset, draft proposed

<img src="fallback.jpg" alt="" srcset="small.jpg 640w 1x, small-hd.jpg 640w 2x, med.jpg 1x, med-hd.jpg 2x ">

Media Queries

Not so long ago…

• We could define media types: screen and print.

• But not easily respond to the user’s display.

• Lots of grunt work.

• Didn’t spend much time thinking about mobile

devices.

CSS3 Media Queries

The CSS3 Media Queries Module specifies

methods to enable web developers to scope

a style sheet to a set of precise device

capabilities.

Simple Example

@media screen and (max-width: 600px) { body { font-size: 80%; }}

Other Queries@media screen and (min-width:320px) and (max-width:480px)

@media not print and (max-width:600px)

@media screen (x) and (y), print (a) and (b)

Can be declared…In the StylesheetImport Rule

@import url(mq.css) only screen and (max-width:600px)

link Element

<link rel=“stylesheet” media=“only screen and (max-width:800px)” href=“mq.css”>

Supported Media Properties• min/max-width• min/max-height• device-width• device-height• orientation• aspect-ratio

• device-aspect-ratio• color• color-index• monochrome• resolution

Supported Media Properties• min/max-width• min/max-height• device-width• device-height• orientation• aspect-ratio

• device-aspect-ratio• color• color-index• monochrome• resolution

Little Pea Bakery

What about non-supportive browsers?css3-mediaqueries-js by Wouter van der

Graaf

Just include the script in your pages

Parses the CSS and applies style for

positive media tests

Patterns

Mostly Fluid

Column Drop

Layout Shifter

Tiny Tweaks

Off Canvas

Resources

Resources• http://www.alistapart.com/articles/responsive-web-design/• http://www.lukew.com/ff/entry.asp?1514• http://filamentgroup.com/examples/responsive-images/• http://code.google.com/p/css3-mediaqueries-js/• http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries• http://www.stunningcss3.com/index.php• http://www.abookapart.com/products/responsive-web-design• http://www.smashingmagazine.com/2011/07/22/responsive-web-design-techniques-tools-

and-design-strategies/• http://mediaqueri.es/• http://www.w3.org/TR/css3-mediaqueries/• http://dvcs.w3.org/hg/html-proposals/raw-file/tip/responsive-images/responsive-

images.html

Hey, what was that 4th thing?

Design

• Do we start with mobile-first?

• Is it best that all sites are responsive?

• Do we need or want to do visual comps for every device?

• Don’t dismiss mobile as walking and looking something up.

• We are at the beginning, that’s what makes this interesting!

Evaluation & Questions

http://wpc13.cnf.io/sessions/129

Frédéric Harper

fharper@mozilla.com@fharper

http://hacks.mozilla.comhttp://outofcomfortzone.net

top related