SlideShare a Scribd company logo
Presented by
Keys to Responsive Design
Presented by
I’m Tim.
Responsive Web Design
I wrote this book.
Amazon
Barnes & Noble
Safari Books
...most places, really.
informIT.com
WRIGHT2740
Responsive Web Design
What we’ll be going over
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
01Best PracticesThey’re WAY more exciting than they sound!
Responsive Web Design
Progressive Enhancement
Responsive Web Design
Progressive Enhancement
Responsive Web Design
The BIG secret!
Being good at
responsive design has
little to do with CSS
Responsive Web Design
Rules of Responsive Design
• Don’t call it “mobile”
• Treat it as 1 site
• Don’t target devices
• Don’t remove content for small screens
• Think in terms of features (touch vs. no touch)
• Always remember bandwidth
• Consider the strategy from the start
• Recognize when it isn’t the answer.
Responsive Web Design
02Media Queries & breakpointsHoly sh*t, stop using iPhone dimensions...
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
The Media Query
@media screen and ( max-width: 800px ) {
/* CSS for this breakpoint */
}
media type media feature
normal CSS
Responsive Web Design
The Media “Type”
• all
• screen
• print
• braille
• handheld
• projections
• tv
• aural (speech and sound synthesis)
Responsive Web Design
The Media “Feature”
• min/max-width
• min/max-height
• orientation
• aspect-ratio (browser window)
• device-aspect-ratio (4/3,16/9)
• color-index
• resolution & min-resolution (dpi * dpcm)
• device pixel ratio
Responsive Web Design
Aspect ratio
Height/Width
Orientation
Resolution (dpi)
Touch enabled (-moz-)
Responsive Web Design
Aspect ratio
Height/Width
Orientation
Resolution (dpi)
Touch enabled (-moz-)
Responsive Web Design
Aspect ratio
Height/Width
Orientation
Resolution (dpi)
Touch enabled
Responsive Web Design
Aspect ratio
Height/Width
Orientation
Resolution (dpi)
Touch enabled (-moz-)
Responsive Web Design
Aspect ratio
Height/Width
Orientation
Resolution (dpi)
Touch enabled (-moz-)
Responsive Web Design
Setting Breakpoints
Responsive Design
doesn’t care that the
iPhone is 320 pixels
wide...
...and neither should you
Responsive Web Design
Making it work on everywhere
Responsive Web Design
Viewport tag content
width=device-width // define the viewport size
initial-scale=1.0 // starting zoom level
maximum-scale=1.0 // control zooming (0-10)
user-scalable=0 // prevent zooming / input:focus scrolling
Responsive Web Design
Recommended Tag
<meta name=”viewport” content=”width=device-width, initial-scale=1.0”>
Responsive Web Design
Breakpoints & Media Queries
Live example
Responsive Web Design
Browser Support
caniuse.com
Responsive Web Design
03Design patternsOther people do things this way...
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
Navigation
• The “Do nothing” approach
• Stacked navigation method
• Footer anchor
• Select menu
• Toggle
• Left navigation flyout
• The “Hide and Cry”
Credit: Brad Frost
Responsive Web Design
Navigation
The “Do Nothing” Approach
Responsive Web Design
Navigation
The “Stacked Navigation” method
Responsive Web Design
Navigation
Footer Anchor
Image Credit: Brad Frost
Responsive Web Design
Navigation
Select Menu
Image Credit: Brad Frost
Responsive Web Design
Navigation
Toggle
Responsive Web Design
Navigation
Left Nav Flyout
Responsive Web Design
Navigation
The “Hide and Cry”
Responsive Web Design
Navigation
Live example
Responsive Web Design
04Responsive ImagesLoading a image for a small screen? Eh.
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
Responsive Images
• max-width: 100%
• srcset
• Picturefill
• Bandwidth testing
Responsive Web Design
Lazy man’s (or woman’s) images
img {
max-width: 100%;
}
Responsive Web Design
srcset
<img src=”low-res.jpg” srcset=”high-res.jpg 2x”>
<img src=”low-res.jpg”
srcset=”narrow.jpg 640w 1x,
high-res-narrow.jpg 640w 2x,
large.jpg 1x,
high-res-large.jpg 2x”>
just to make sure it’s a little confusing...
Responsive Web Design
Picturefill
<div data-picture data-alt=”A Fat Brown Dog”>
<div data-src=”small.jpg” data-media=”(max-width:600px)”></div>
<div data-src=”hd.jpg” data-media=”(min-device-pixel-ratio: 2.0)”></div>
<noscript>
<img src=”fat-dog.jpg” alt=”A Fat Brown Dog”>
</noscript>
</div>
Responsive Web Design
Bandwidth Testing
navigator.mozConnection.bandwidth
if(Manage.connection === “good”) {
// you have ample bandwidth
}
https://github.com/timwright12/js-asset-management
Responsive Web Design
05Responsive JavaScriptGulp...
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
Responsive JavaScript
body:before {
content: “widescreen”;
position: absolute;
top: -9999px;
left: -9999px;
}
@media screen and (max-width:600px) {
content: “smallscreen”;
}
Responsive Web Design
Responsive JavaScript
// set the initial screen size
var size = window.getComputedStyle(document.body,':before').getPropertyValue('content');
// check the breakpoint on resize
window.addEventListener(“resize”, function(){
size = window.getComputedStyle(document.body,':before').getPropertyValue('content');
if (size.indexOf(“smallscreen”) != -1) {
// do small screen JS
} else {
// do large screen JS
}
}, false);
Responsive Web Design
Responsive JavaScript
Basic example
Responsive Web Design
Responsive JavaScript
Over the top example
Responsive Web Design
06Responsive Design & the ServerLean on me... when you’re not strooooong... and I’ll be your friend...
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
RESS
?
Yes, do
something
mobile
No.
Responsive Web Design
RESS
In the browser On the server
• Screen size
• Orientation
• Design changes (CSS)
• Is mobile?
• Structural changes (HTML)
Keys to Responsive Design
Keys to Responsive Design
Responsive Web Design
RESS
?
Insert call button
& use native
datepicker
Async load jQuery UI &
date picker base CSS
YES!
NO!
Responsive Web Design
RESS
What is the window size? Is touch available?
• Answered with media
queries
• No - Do nothing
• Yes - Async load touch
interactions (swiping)
Responsive Web Design
What we went over
• Progressive Enhancement
• Best Practices
• Setting Breakpoints
• Design Patterns
• Responsive Media
• Responsive JavaScript
• RESS (RWD with Server-side Components)
Responsive Web Design
Books
Responsive Web Design
by Ethan Marcotte
Responsive Web Design
Articles
• Responsive Web Design
http://www.alistapart.com/articles/responsive-web-design/
• Guidelines for Responsive Design
http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/
• Design Process in a Responsive Age
http://uxdesign.smashingmagazine.com/2012/05/30/design-process-responsive-age/
• Adaptive vs. Responsive Design
http://uxdesign.smashingmagazine.com/2012/11/08/ux-design-qa-with-christian-holst/
• Responsive Design is more than breakpoints
http://inspectelement.com/articles/responsive-web-design-is-so-more-than-just-a-few-
breakpoints/
Responsive Web Design
Tools & Plugins
• Picturefill
https://github.com/scottjehl/picturefill
• FitVids
http://fitvidsjs.com/
• RespondJS
https://github.com/scottjehl/Respond
• Testing a Responsive Site
http://mattkersley.com/responsive/
• Multi-device layout patterns
http://www.lukew.com/ff/entry.asp?1514
Responsive Web Design
Folks on Twitter
• Responsive Design, @rwd
• Mat Marquis, @wilto
• Chris Coyier, @chriscoyier
• Brad Frost, @brad_frost
• Luke Wroblewski, @lukew
Responsive Web Design
A Podcast
Web:
freshtilledsoil.com/thedirt
Twitter:
@thedirtshow
@freshtilledsoil
Responsive Web Design
Slides
ftsdesign.com/labs/rwd-08-26-2013/slides.pdf
Responsive Web Design
Questions/Comments
E-mail: tim.wright@freshtilledsoil.com
Twitter: @csskarma

More Related Content

PPTX
Responsive web designing ppt(1)
PDF
Strategy for a Responsive UX
PDF
Seven Steps To Better JavaScript
PPTX
Using Responsive Web Design To Make Your Web Work Everywhere
PPTX
Using Responsive Web Design To Make Your Web Work Everywhere
PPTX
Responsive UI using CSS Media Query
PDF
Let's get accessible!
PPTX
Responsive web design
Responsive web designing ppt(1)
Strategy for a Responsive UX
Seven Steps To Better JavaScript
Using Responsive Web Design To Make Your Web Work Everywhere
Using Responsive Web Design To Make Your Web Work Everywhere
Responsive UI using CSS Media Query
Let's get accessible!
Responsive web design

What's hot (20)

KEY
Responsive Web Design
PPTX
Web design principles
PPTX
Responsive Web Design - NYC Webgrrls
PPT
Lecture 1: Web Design + Usability
PPTX
PPTX
Mobile Best Practices
PPTX
arixstudio l virtual web design academy
PDF
Principles of web design
PDF
The Art of Web Design, 101
PPT
Gsc awd 1_web_developmentlifecyclefrombegtoendpowerpoint
PDF
Design responsively
PPT
Intro to Web Design
ODP
Responsive Web Design - but for real!
PPT
Responsive Web Design
PPTX
Responsive Web Design helps SEO Boost up by XHTMLChamps
PPTX
Implementing a Responsive Image Strategy
PPTX
FITC - 2012-04-23 - Responsive Web Design
PPTX
Handy Resources for Developing a WordPress Website
PDF
Creating a WordPress Website that Works from the Start
PDF
11 Amazing things I Learnt At Word Camp Sydney 2014
Responsive Web Design
Web design principles
Responsive Web Design - NYC Webgrrls
Lecture 1: Web Design + Usability
Mobile Best Practices
arixstudio l virtual web design academy
Principles of web design
The Art of Web Design, 101
Gsc awd 1_web_developmentlifecyclefrombegtoendpowerpoint
Design responsively
Intro to Web Design
Responsive Web Design - but for real!
Responsive Web Design
Responsive Web Design helps SEO Boost up by XHTMLChamps
Implementing a Responsive Image Strategy
FITC - 2012-04-23 - Responsive Web Design
Handy Resources for Developing a WordPress Website
Creating a WordPress Website that Works from the Start
11 Amazing things I Learnt At Word Camp Sydney 2014
Ad

Similar to Keys to Responsive Design (20)

PDF
Keys to Responsive Design
PDF
Keys to Responsive Design
PPTX
Chapter 17: Responsive Web Design
PPTX
Responsive Web Design
PPTX
Responsive web design ppt
PDF
Responsive Web Design - more than just a buzzword
PPTX
Developing for Responsive Design - Frederic Welterlin
PDF
Monkeytalk Fall 2012 - Responsive Web Design
PPTX
Advancio, Inc. Academy: Responsive Web Design
PDF
Responsive Web Design
PPTX
Responsive Design Overview for UB CIT
PPTX
Introduction to Responsive Web Design
PPTX
Talk 03 responsive-web-design
PDF
Introduction | SEO Expate BD Ltd.
PDF
Responsive Design & the Business Analyst
PDF
Responsive Web Design
PDF
Introduction | SEO Expate BD Ltd.
KEY
Responsive Design & Mobile First
PDF
Responsive and Mobile Design
PDF
Responsive design lunch and learn
Keys to Responsive Design
Keys to Responsive Design
Chapter 17: Responsive Web Design
Responsive Web Design
Responsive web design ppt
Responsive Web Design - more than just a buzzword
Developing for Responsive Design - Frederic Welterlin
Monkeytalk Fall 2012 - Responsive Web Design
Advancio, Inc. Academy: Responsive Web Design
Responsive Web Design
Responsive Design Overview for UB CIT
Introduction to Responsive Web Design
Talk 03 responsive-web-design
Introduction | SEO Expate BD Ltd.
Responsive Design & the Business Analyst
Responsive Web Design
Introduction | SEO Expate BD Ltd.
Responsive Design & Mobile First
Responsive and Mobile Design
Responsive design lunch and learn
Ad

More from Intelligent_ly (20)

PPTX
After Google AdWords: How to Generate Sales, Not Just Clicks and Leads
PPTX
Legal Land Mines: Raising Capital
PDF
Legal Land Mines: Raising Capital
PDF
Craft Your Marketing To-Do List Like a Growth Hacker
PDF
The UX Playbook: Tools, Tips, & Tricks
PDF
Founder Selling: How to Win Deals & Close Critical Sales
PDF
Tech for the Non Technical - Anatomy of an Application Stack
PDF
Fundamentals of Facebook Advertising
PDF
Introduction to Paid Customer Acquisition
PDF
Immigration Issues for Startups
PDF
Product Management and the Search for Product Market Fit
PDF
Sales 101: How to Write an Email that Everyone Responds To
PDF
How to Market Unsexy Products
PDF
Get funded Expert Advice from the People Who Know
PDF
Dave Balter's Advocacy Marketing Class
PDF
The Short List: Choosing Critical Features for Your Minimum Viable Product
PDF
Whale Hunting: How to Get Intros and Sell to Big Brands as a Startup
PDF
Don't Get Funded: How to Use Your Customers to Bootstrap
PDF
Facebook Advertising: Launch a Campaign That Really Works
PDF
UX & Wireframes Know Your Weapon of Choice
After Google AdWords: How to Generate Sales, Not Just Clicks and Leads
Legal Land Mines: Raising Capital
Legal Land Mines: Raising Capital
Craft Your Marketing To-Do List Like a Growth Hacker
The UX Playbook: Tools, Tips, & Tricks
Founder Selling: How to Win Deals & Close Critical Sales
Tech for the Non Technical - Anatomy of an Application Stack
Fundamentals of Facebook Advertising
Introduction to Paid Customer Acquisition
Immigration Issues for Startups
Product Management and the Search for Product Market Fit
Sales 101: How to Write an Email that Everyone Responds To
How to Market Unsexy Products
Get funded Expert Advice from the People Who Know
Dave Balter's Advocacy Marketing Class
The Short List: Choosing Critical Features for Your Minimum Viable Product
Whale Hunting: How to Get Intros and Sell to Big Brands as a Startup
Don't Get Funded: How to Use Your Customers to Bootstrap
Facebook Advertising: Launch a Campaign That Really Works
UX & Wireframes Know Your Weapon of Choice

Recently uploaded (20)

PDF
Katrina Stoneking: Shaking Up the Alcohol Beverage Industry
PPTX
Principles of Marketing, Industrial, Consumers,
PPTX
Amazon (Business Studies) management studies
DOCX
unit 2 cost accounting- Tender and Quotation & Reconciliation Statement
PPTX
Probability Distribution, binomial distribution, poisson distribution
PDF
Power and position in leadershipDOC-20250808-WA0011..pdf
PDF
Stem Cell Market Report | Trends, Growth & Forecast 2025-2034
PDF
kom-180-proposal-for-a-directive-amending-directive-2014-45-eu-and-directive-...
PPTX
New Microsoft PowerPoint Presentation - Copy.pptx
DOCX
Euro SEO Services 1st 3 General Updates.docx
PPTX
job Avenue by vinith.pptxvnbvnvnvbnvbnbmnbmbh
DOCX
Business Management - unit 1 and 2
PPTX
Belch_12e_PPT_Ch18_Accessible_university.pptx
PPTX
HR Introduction Slide (1).pptx on hr intro
DOCX
unit 1 COST ACCOUNTING AND COST SHEET
PDF
BsN 7th Sem Course GridNNNNNNNN CCN.pdf
PDF
Reconciliation AND MEMORANDUM RECONCILATION
PPTX
ICG2025_ICG 6th steering committee 30-8-24.pptx
PPTX
5 Stages of group development guide.pptx
PPTX
Lecture (1)-Introduction.pptx business communication
Katrina Stoneking: Shaking Up the Alcohol Beverage Industry
Principles of Marketing, Industrial, Consumers,
Amazon (Business Studies) management studies
unit 2 cost accounting- Tender and Quotation & Reconciliation Statement
Probability Distribution, binomial distribution, poisson distribution
Power and position in leadershipDOC-20250808-WA0011..pdf
Stem Cell Market Report | Trends, Growth & Forecast 2025-2034
kom-180-proposal-for-a-directive-amending-directive-2014-45-eu-and-directive-...
New Microsoft PowerPoint Presentation - Copy.pptx
Euro SEO Services 1st 3 General Updates.docx
job Avenue by vinith.pptxvnbvnvnvbnvbnbmnbmbh
Business Management - unit 1 and 2
Belch_12e_PPT_Ch18_Accessible_university.pptx
HR Introduction Slide (1).pptx on hr intro
unit 1 COST ACCOUNTING AND COST SHEET
BsN 7th Sem Course GridNNNNNNNN CCN.pdf
Reconciliation AND MEMORANDUM RECONCILATION
ICG2025_ICG 6th steering committee 30-8-24.pptx
5 Stages of group development guide.pptx
Lecture (1)-Introduction.pptx business communication

Keys to Responsive Design