SlideShare a Scribd company logo
1 of 60
Download to read offline
Hammering Responsive
Web Design Into Shape
@KenTabor
Thursday, October 17, 13
Shared

bit.ly/KenBigD13

Thursday, October 17, 13
I’m Not Selling RWD

Assuming you already buy into
responsive, fluid, what-have-you, design

Thursday, October 17, 13
Challenge: Many Devices

Now let’s focus on the challenge of
testing a multitude of form-factors

Thursday, October 17, 13
Freedom!

Production servers are a drag for testing

Thursday, October 17, 13
Install a Web Server

Get you some Apache for starters
Lots of solid how-to tutorials online

Thursday, October 17, 13
Apache Setup

Tell Apache where to serve files from

Thursday, October 17, 13
Editing Config Files

NotePad++ on Win
TextWrangler on OSX

Thursday, October 17, 13
httpd.conf

DocumentRoot "/Users/ken/trees"
<Directory "/Users/ken/trees">

Thursday, October 17, 13
httpd-vhosts.conf

<VirtualHost *:80>
DocumentRoot "/Users/ken/trees"
ServerName localhost
</VirtualHost>

Thursday, October 17, 13
Localhost, the Best Host

Rapid turn around and total control

Thursday, October 17, 13
Laptop + Device => #Joy

Can we attach mobile devices to our
development laptop? Yes! Apache helps.

Thursday, October 17, 13
Devices + Localhost

Laptop is hard-wired to router
iPad and iPhone both on wifi router
Flat & common topology is key

Thursday, October 17, 13
System Prefs => Sharing

Thursday, October 17, 13
iPhone Calling MacBook

http://Kens-MacBook-Air.local

Thursday, October 17, 13
Browsing the File Server

Choose files as per Apache file sharing
including your website/app

Thursday, October 17, 13
iPhone Perspective?

Thursday, October 17, 13
Thursday, October 17, 13
Advanced: OSX Hotspot

Create a wireless hotspot allowing
mobile devices direct connect to laptop

Thursday, October 17, 13
Win7 Device Connect

Easy stuff, just flatten the connections

Thursday, October 17, 13
Devices + Localhost

Laptop is hard-wired to router
iPad and iPhone both on wifi router

Thursday, October 17, 13
Connection

Laptop has Apache, firewall off
Website files in VirtualHost directory
Get the ip address, iPhone and iPad hit it

Thursday, October 17, 13
Thursday, October 17, 13
Who Am I?

I’m a front-end product engineer
At Sabre Holdings building TripCase

Thursday, October 17, 13
Thursday, October 17, 13
Internet Inspirations

mediaqueri.es

Thursday, October 17, 13
Internet Resources

responsive.is

Thursday, October 17, 13
responsive.is

Thursday, October 17, 13
responsive.is

Thursday, October 17, 13
Internet Resources

screenqueri.es

Thursday, October 17, 13
screenqueri.es

Thursday, October 17, 13
screenqueri.es

Thursday, October 17, 13
Responsive Testing Repo

Easily preview your site on form factors
from a convenient localhost page

Thursday, October 17, 13
Responsive Testing Repo

github.com/mattkersley/ResponsiveDesign-Testing

Thursday, October 17, 13
Localhost Install

Thursday, October 17, 13
ResponsizerJS

Drop it into your web site helping resize
browser window when matching devices

Thursday, October 17, 13
Responsizer GitHub

github.com/KDawg/Responsizer.js

Thursday, October 17, 13
Responsizer index.html

<script src="resources/code/Responsizer.js"
type="text/javascript"></script>

Thursday, October 17, 13
Responsizer Measuring

Inject it into any site to learn from them

Thursday, October 17, 13
Injecting Responsizer

Google Chrome
View => Developer Tools => JavaScript
Console

Thursday, October 17, 13
Injecting Responsizer

$('body').append('<script type="text/javascript"
src="http://localhost/Responsizer.js/
Responsizer.js>"</script>')

Thursday, October 17, 13
How Big Are Your Users?

How do we know what size devices our
customers use?

Thursday, October 17, 13
Google Analytics

If you’re using Google Analytics you have
a wealth of information to report

Thursday, October 17, 13
Analytics Dashboard

Thursday, October 17, 13
Analytics Informs

Using this data informs your interface
design with fact-based reality

Thursday, October 17, 13
Sass is CSS Done Better

sass-lang.com

Thursday, October 17, 13
Sass - What is it?

Meta language, lovely syntactic sugar,
compiles to CSS, makes dev life joyful

Thursday, October 17, 13
Sass Media Queries
.popup {
left: 25%;
position: fixed;
width: 50%;
z-index: 20;
@media screen and (max-width: 320px) {
left: 10%;
width: 80%
}
@media screen and (min-width: 1024px) {
font-size: 2em;
left: 15%;
width: 70%;
}
}

Thursday, October 17, 13
Sass Makes It Look Good

The media query nesting Sass affords
leads to organized and rational code

Thursday, October 17, 13
Fun with PhantomJS

phantomjs.org
Headless Webkit browser

Thursday, October 17, 13
Imagemagick Processing

imagemagick.org
Selection of command-line image tools

Thursday, October 17, 13
Install Both Tools

brew install phantomjs
brew install imagemagick

Thursday, October 17, 13
PhantomJS Photos

Take screenshots vs online and localhost
See what sites look like on devices

Thursday, October 17, 13
PhantomJS - screenie.js
var webpage = require('webpage');
var page;
page = webpage.create();
page.viewportSize = {width: 1024, height: 768};
page.clipRect = {top: 0, left: 0, width: 1024,
height: 768};
page.open('http://www.microsoft.com', function() {
page.render('screenie_1024_768.png');
phantom.exit();
});

phantomjs screenie.js

Thursday, October 17, 13
Imagemagick Comparing

Use it to compare two images producing
a third showing what’s different

Thursday, October 17, 13
Revealing Changes

compare image1.png image2.png
image3.png

Thursday, October 17, 13
Compare Design Drift

Thursday, October 17, 13
imagemagick insanity

Can this be automated?
Does visual history help debugging?
Can we detect design diverging?

Thursday, October 17, 13
Questions?

Thursday, October 17, 13
Thank-You

bit.ly/KenBigD13
@KenTabor
Thursday, October 17, 13

More Related Content

Viewers also liked

Viewers also liked (7)

Archivo Pdf
Archivo PdfArchivo Pdf
Archivo Pdf
 
BigDesign 2014 - What's Before Mobile First?
BigDesign 2014 - What's Before Mobile First?BigDesign 2014 - What's Before Mobile First?
BigDesign 2014 - What's Before Mobile First?
 
Ten Easy Ways to Improve Your Conference Talk
Ten Easy Ways to Improve Your Conference TalkTen Easy Ways to Improve Your Conference Talk
Ten Easy Ways to Improve Your Conference Talk
 
Measuring the Mobile Experience at SXSW 2016
Measuring the Mobile Experience at SXSW 2016Measuring the Mobile Experience at SXSW 2016
Measuring the Mobile Experience at SXSW 2016
 
10 Tips for a Winning Hackathon Pitch
10 Tips for a Winning Hackathon Pitch10 Tips for a Winning Hackathon Pitch
10 Tips for a Winning Hackathon Pitch
 
10 Things About Human UI that Will Change Forever in Self-Driving Cars
10 Things About Human UI that Will Change Forever in Self-Driving Cars10 Things About Human UI that Will Change Forever in Self-Driving Cars
10 Things About Human UI that Will Change Forever in Self-Driving Cars
 
Your Future HTML: The Evolution of Site Design with Web Components
Your Future HTML: The Evolution of Site Design with Web ComponentsYour Future HTML: The Evolution of Site Design with Web Components
Your Future HTML: The Evolution of Site Design with Web Components
 

Similar to Hammering Responsive Web Design Into Shape

Calabash - Karl and Jonas
Calabash - Karl and JonasCalabash - Karl and Jonas
Calabash - Karl and Jonas
Xamarin
 
Building a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and SaltBuilding a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and Salt
Docker, Inc.
 
Consideration for Building a Private Cloud
Consideration for Building a Private CloudConsideration for Building a Private Cloud
Consideration for Building a Private Cloud
OpenStack Foundation
 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
Christopher Schmitt
 
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
cordoval
 

Similar to Hammering Responsive Web Design Into Shape (20)

Cors michael
Cors michaelCors michael
Cors michael
 
Building a platform with Django, Docker, and Salt
Building a platform with Django, Docker, and SaltBuilding a platform with Django, Docker, and Salt
Building a platform with Django, Docker, and Salt
 
Calabash - Karl and Jonas
Calabash - Karl and JonasCalabash - Karl and Jonas
Calabash - Karl and Jonas
 
BBC Olympics: An accessibility case study
BBC Olympics: An accessibility case studyBBC Olympics: An accessibility case study
BBC Olympics: An accessibility case study
 
Building a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talkBuilding a platform with Django, Docker and Salt | Djangocon lightning talk
Building a platform with Django, Docker and Salt | Djangocon lightning talk
 
Building a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and SaltBuilding a Platform with Django, Docker and Salt
Building a Platform with Django, Docker and Salt
 
Scaling PHP to 40 Million Uniques
Scaling PHP to 40 Million UniquesScaling PHP to 40 Million Uniques
Scaling PHP to 40 Million Uniques
 
Servicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyectoServicios y Herramientas para usar en tu próximo proyecto
Servicios y Herramientas para usar en tu próximo proyecto
 
One Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web AppOne Page, One App -or- How to Write a Crawlable Single Page Web App
One Page, One App -or- How to Write a Crawlable Single Page Web App
 
Consideration for Building a Private Cloud
Consideration for Building a Private CloudConsideration for Building a Private Cloud
Consideration for Building a Private Cloud
 
Contributing to WordPress
Contributing to WordPressContributing to WordPress
Contributing to WordPress
 
[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design[jqconatx] Adaptive Images for Responsive Web Design
[jqconatx] Adaptive Images for Responsive Web Design
 
Construindo um micro framework web em Python
Construindo um micro framework web em PythonConstruindo um micro framework web em Python
Construindo um micro framework web em Python
 
Green Shoots in the Brownest Field: Being a Startup in Government
Green Shoots in the Brownest Field: Being a Startup in GovernmentGreen Shoots in the Brownest Field: Being a Startup in Government
Green Shoots in the Brownest Field: Being a Startup in Government
 
DIY Synthetic: Private WebPagetest Magic
DIY Synthetic: Private WebPagetest MagicDIY Synthetic: Private WebPagetest Magic
DIY Synthetic: Private WebPagetest Magic
 
Zeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para MobileZeno rocha - HTML5 APIs para Mobile
Zeno rocha - HTML5 APIs para Mobile
 
Use Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsUse Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile Apps
 
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
Specking Interactors with PHPSpec and YOLO (DDD) at PHPConference Argentina 2013
 
Node.js and Ruby
Node.js and RubyNode.js and Ruby
Node.js and Ruby
 
Continuous Integration for IOS Apps
Continuous Integration for IOS AppsContinuous Integration for IOS Apps
Continuous Integration for IOS Apps
 

More from Ken Tabor

More from Ken Tabor (10)

Introduction to Coding a Webpage
Introduction to Coding a WebpageIntroduction to Coding a Webpage
Introduction to Coding a Webpage
 
Making the Difficult, Simple(r)
Making the Difficult, Simple(r)Making the Difficult, Simple(r)
Making the Difficult, Simple(r)
 
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...
On Writing: What Best Selling Author David Baldacci Taught Me About Writing a...
 
Demo Hard: Things Nobody Told an Introvert About Public Speaking
Demo Hard: Things Nobody Told an Introvert About Public SpeakingDemo Hard: Things Nobody Told an Introvert About Public Speaking
Demo Hard: Things Nobody Told an Introvert About Public Speaking
 
Machine Learning: Understanding the Invisible Force Changing Our World
Machine Learning: Understanding the Invisible Force Changing Our WorldMachine Learning: Understanding the Invisible Force Changing Our World
Machine Learning: Understanding the Invisible Force Changing Our World
 
Measuring the Mobile Experience: The Analytics of Handheld UX
Measuring the Mobile Experience: The Analytics of Handheld UXMeasuring the Mobile Experience: The Analytics of Handheld UX
Measuring the Mobile Experience: The Analytics of Handheld UX
 
10 Leadership Lessons from the Tao Te Ching
10 Leadership Lessons from the Tao Te Ching10 Leadership Lessons from the Tao Te Ching
10 Leadership Lessons from the Tao Te Ching
 
UXPA Dallas - Google Analytics and What's Before Mobile First
UXPA Dallas - Google Analytics and What's Before Mobile FirstUXPA Dallas - Google Analytics and What's Before Mobile First
UXPA Dallas - Google Analytics and What's Before Mobile First
 
WVPDX 2014 - Hammering Responsive Web Design Into Shape
WVPDX 2014 - Hammering Responsive Web Design Into ShapeWVPDX 2014 - Hammering Responsive Web Design Into Shape
WVPDX 2014 - Hammering Responsive Web Design Into Shape
 
Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...
Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...
Translated Strings and Foreign Language Support in JavaScript Web Apps - OSCO...
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Recently uploaded (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

Hammering Responsive Web Design Into Shape