responsive web design

10
Responsive Web Design An Introduction

Upload: jonas-auken

Post on 28-Oct-2014

384 views

Category:

Technology


2 download

DESCRIPTION

The goal for responsive web design is two fold: Firstly it supports one solution across all browser platforms thus enhancing reuse of both frontend and backend components. Secondly it gives the customer a fresh approach to web design: mobile first. The practice of responsive web design is easy to understand but difficult to master. This presentation will give a real life use case showing both sides of the story.

TRANSCRIPT

Page 1: Responsive Web Design

Responsive Web DesignAn Introduction

Page 2: Responsive Web Design

Who Am I?Jonas Auken

Dane living in Delhi

ArchitectTechieCurious

Page 3: Responsive Web Design

BankdataCurrent jobSoftware for banksE.g. Jyske Bank - 3rd largest bankin Denmark

Page 4: Responsive Web Design

Screen Resolutions

Page 5: Responsive Web Design

The old solutionwww.thehindu.comm.thehindu.com

Page 6: Responsive Web Design

Mobile Matters

Page 7: Responsive Web Design

The Basics@media screen and (min-width:500px) { ... }

@media screen and (max-width: 320px) {.employee-shelf ul { left: 20px }.employee-shelf ul li { margin-right: -14px }.employee-shelf.vase li { margin-right: -20px }

}@media screen and (min-width: 321px) and (max-width: 480px) {

.employee-shelf ul { left: 32px }

.employee-shelf ul li { margin-right: -9px }

.employee-shelf.vase li { margin-right: -16px }}@media screen and (min-width: 600px) {

.employee-shelf.havkat ul { background: url('../../images/jyskebank/sections/kontakt/shelf/decoration.png?1349088513')

right bottom no-repeat;padding-right: 222px

}.employee-shelf.vase ul { ...

padding-right: 190px}.employee-shelf.tavle ul { ...

padding-right: 255px}

}

Page 9: Responsive Web Design

Beyond ContentLoan Calculator

http://www.jyskebank.dk/wps/portal/jfo/produkter/laan/regnlaan

Currency Calculatorhttp://www.jyskebank.dk/valuta

Page 10: Responsive Web Design

LinksWikipedia - http://en.wikipedia.org/wiki/Responsive_web_design

Examples - http://designmodo.com/responsive-design-examples/

UX Expert - http://clausstadel.com/

Jyske Bank - http://www.jyskebank.dk

@media - http://www.w3schools.com/css/css_mediatypes.asp

media queries - http://www.w3.org/TR/css3-mediaqueries/

http://en.wikipedia.org/wiki/Media_queries