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

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
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...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
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
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
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
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 

Hammering Responsive Web Design Into Shape