SlideShare a Scribd company logo
Designing for the

MOBILE
WEB
@michaeldick
http://m1k3.net
                    RefreshBmore
                        Dec. 2010
@michaeldick


cssiphone.com                         nclud
web inspiration for mobile   a creative web design agency
1) Design & UX
2) Viewports
3) Detection
4) Tips & Tricks
5) Questions & Discussion
Mobile
 Web

 2.0

* Compare it to
* the browser wars
* from the 90’s
CSS = CSS

HTML = HTML

  JS = JS
(Technical only, not applied to the user interaction)
X
Conte__t
   is
 king
is the iPad “Mobile”




              ?
“   It’s so much
    more intimate
    than a laptop


                     ”
             — Steve Jobs
Jobs demonstrated the iPad
while sitting on a couch.
Good.
Good.
Good.
:(
Good.
Design
    &
Experience
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
BAD EXPERIENCE
Graceful
Degradation
"Designing for the Mobile Web" by Michael Dick (December 2010)
Desktop
Mobile “2.0”
Mobile “WAP”
Opt-in / Opt-out
opt-in
opt to go back
opt-out
opt to go back
opt to go back
Viewports
and why fixed positioning doesn’t
            work!
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
<meta
  name="viewport"
  content=""
/>
    (at its most basic state)
content=”

    width = ;
    initial-scale = ;
    maximum-scale = ;
    user-scalable = ;
”
"Designing for the Mobile Web" by Michael Dick (December 2010)
VIEWPORT STARTS
VIEWPORT ENDS
VIEWPORT
NOT!
Device

Detection
Specific
      vs
Optimized
(and responsive)
Optimized             Specific


same markup          new markup


        both use new CSS
Stylesheet (HTML)

<link rel="stylesheet" href=""

media="only screen and
(max-device-width: 480px)"
/>
@media (CSS)

@media only screen and (max-device-
width: 480px)
{
    /* iphone css goes here */
}
@import (CSS)


@import url(‘mobile.css’) only screen
and (max-device-width: 480px);
User Agent Sniffing


 JS:   navigator.userAgent

PHP: $_SERVER['HTTP_USER_AGENT']
detectMobileBrowsers.mobi
require('detect.php');
$mobile = detect();
Orientation

Detection
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
<body id=”portrait”>
body#portrait
{
    width:320px;
    color:green;
}
body#landscape
{
    width:480px;
    color:red;
}
Quick

Tips & Tricks
HTML 5 Inputs


  type=”url”    type=”email”




type=”number”    type=”tel”
Disable..

autocorrect="off"
autocapitalize="off"
autocomplete="off"
use
large hit areas
"Designing for the Mobile Web" by Michael Dick (December 2010)
BAD HIT AREAS
Keeps the text from adjusting on
           orientation change



body {

    -webkit-text-
    size-adjust:none;
}
Hide the Address Bar onload




<body onload=”

  window.scrollTo(0, 1);
”>
Don’t use fixed widths/heights
"Designing for the Mobile Web" by Michael Dick (December 2010)
"Designing for the Mobile Web" by Michael Dick (December 2010)
Discussion
    &
Questions
Google Keywords

✓   iphone detection
✓   iphone orientation javascript
✓   iphone psd
✓   detect mobile browsers
✓   android / iphone sdk
✓   mobile safari dev center *
Thank You.
@michaeldick
http://m1k3.net

More Related Content

PDF
Making your site mobile-friendly - DevCSI Reading 21.07.2010
PDF
Making your site mobile-friendly - Ignite Manchester 01.03.2010
PDF
Webseiten für mobile Geräte - MobileTech Conference 2010 Mainz
PDF
Making your site mobile-friendly - Standards-Next 12.06.2010
PDF
Handys und Tablets - Webentwicklung jenseits des Desktops - MobileTech Confer...
PDF
Making your site mobile-friendly / RIT++
PDF
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
PDF
Patrick Lauke – Opera Patrick Lauke Rit++ 12 04 2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - Ignite Manchester 01.03.2010
Webseiten für mobile Geräte - MobileTech Conference 2010 Mainz
Making your site mobile-friendly - Standards-Next 12.06.2010
Handys und Tablets - Webentwicklung jenseits des Desktops - MobileTech Confer...
Making your site mobile-friendly / RIT++
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
Patrick Lauke – Opera Patrick Lauke Rit++ 12 04 2010

What's hot (20)

PPTX
Open source javascript libraries for mobile web applications in 2012
PPTX
Mobile Web on Touch Event and YUI
PPT
Bar Camp Iphone Web Hackery
PDF
Making your site mobile-friendly - ThoughtWorks Manchester GeekNights 17.11.2010
PPTX
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
PDF
モバイル検索とアプリ
ODP
Firefox Mobile
PDF
Remote debug in mobile browser
PPT
Design Caffeine For Search and Browse UI IASummit2010
PDF
Now you see me... Adaptive Web Design and Development
KEY
Rapid Testing, Rapid Development
PDF
Accessibility - A feature you can build
PDF
E learningakept2014
PDF
Accessible web applications
PDF
Responsive websites. Toolbox
PDF
Responsive Web Design: buzzword or revolution?
PDF
jQuery Conference San Diego 2014 - Web Performance
PDF
Building WebApp with HTML5
KEY
Tools that help and speed up RWD dev
PPTX
jQuery Conference Chicago - September 2014
Open source javascript libraries for mobile web applications in 2012
Mobile Web on Touch Event and YUI
Bar Camp Iphone Web Hackery
Making your site mobile-friendly - ThoughtWorks Manchester GeekNights 17.11.2010
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
モバイル検索とアプリ
Firefox Mobile
Remote debug in mobile browser
Design Caffeine For Search and Browse UI IASummit2010
Now you see me... Adaptive Web Design and Development
Rapid Testing, Rapid Development
Accessibility - A feature you can build
E learningakept2014
Accessible web applications
Responsive websites. Toolbox
Responsive Web Design: buzzword or revolution?
jQuery Conference San Diego 2014 - Web Performance
Building WebApp with HTML5
Tools that help and speed up RWD dev
jQuery Conference Chicago - September 2014
Ad

Viewers also liked (20)

PPTX
Rewarding contributions to public resources with the Mozilla OBI
PPT
Realizarea produselor
PDF
Introduction to the Baltimore Tech Community
PPTX
Components del grup de treball col·laboratiu
PPT
Realizareaproduselordinmaterialeplastice
PPTX
Realizarea produselor
PPT
Heart Circulation Intro
PPTX
Website slide loop
PPT
Realizarea produselor
PPT
Nevoi si dorinte
PPTX
History of yousuf karsh
PPT
How to catch online sales pioneers for travel website
PPTX
Trastorno específico del lenguaje
PPT
Iasi
PPT
Realizarea prod. din sticla
PPTX
Email newsletters
PDF
Three pillars of a working cloud model
PPT
Realizarea produselor
PPT
Realizareaproduselormetalice(1)
PPTX
Social media for economic development and community marketing
Rewarding contributions to public resources with the Mozilla OBI
Realizarea produselor
Introduction to the Baltimore Tech Community
Components del grup de treball col·laboratiu
Realizareaproduselordinmaterialeplastice
Realizarea produselor
Heart Circulation Intro
Website slide loop
Realizarea produselor
Nevoi si dorinte
History of yousuf karsh
How to catch online sales pioneers for travel website
Trastorno específico del lenguaje
Iasi
Realizarea prod. din sticla
Email newsletters
Three pillars of a working cloud model
Realizarea produselor
Realizareaproduselormetalice(1)
Social media for economic development and community marketing
Ad

Similar to "Designing for the Mobile Web" by Michael Dick (December 2010) (20)

PPTX
Html5 on Mobile(For Developer)
PDF
Responsive Websites
PDF
Pinkoi Mobile Web
PDF
Web Development for UX Designers
PDF
Responsive Web Design (HeadStart TechTalks)
PDF
Multi screen HTML5
PDF
Handys und Tablets - Webentwicklung jenseits des Desktops - WebTech Mainz 12....
PDF
Responsive design
PDF
Responsive Web Design (done right)
PDF
Proactive Responsive Design
PPTX
Best Practices for Mobile Web Design
PDF
iPhone - web development lotus notes domino
PDF
Responsive & Responsible: Implementing Responsive Design at Scale
PPTX
Responsive Vs Dedicated: Insight into Mobile Web
PDF
Building responsive web mobile mapping applications
PPTX
3 Approaches to Mobile - An A to Z Primer.
PPT
Responsive web design & mobile web development - a technical and business app...
PPT
Skill Session - Web Multi Device
PDF
Mobile App Development
PPT
Mobile Monday Presentation: Responsive Web Design
Html5 on Mobile(For Developer)
Responsive Websites
Pinkoi Mobile Web
Web Development for UX Designers
Responsive Web Design (HeadStart TechTalks)
Multi screen HTML5
Handys und Tablets - Webentwicklung jenseits des Desktops - WebTech Mainz 12....
Responsive design
Responsive Web Design (done right)
Proactive Responsive Design
Best Practices for Mobile Web Design
iPhone - web development lotus notes domino
Responsive & Responsible: Implementing Responsive Design at Scale
Responsive Vs Dedicated: Insight into Mobile Web
Building responsive web mobile mapping applications
3 Approaches to Mobile - An A to Z Primer.
Responsive web design & mobile web development - a technical and business app...
Skill Session - Web Multi Device
Mobile App Development
Mobile Monday Presentation: Responsive Web Design

Recently uploaded (20)

PDF
BRANDBOOK-Presidential Award Scheme-Kenya-2023
PDF
YOW2022-BNE-MinimalViableArchitecture.pdf
PPTX
building Planning Overview for step wise design.pptx
PPTX
LITERATURE CASE STUDY DESIGN SEMESTER 5.pptx
PDF
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
PPTX
Media And Information Literacy for Grade 12
PDF
Integrated-2D-and-3D-Animation-Bridging-Dimensions-for-Impactful-Storytelling...
PPTX
AD Bungalow Case studies Sem 2.pptxvwewev
PDF
Skskkxiixijsjsnwkwkaksixindndndjdjdjsjjssk
PDF
Phone away, tabs closed: No multitasking
PPTX
mahatma gandhi bus terminal in india Case Study.pptx
PPTX
Entrepreneur intro, origin, process, method
PPT
pump pump is a mechanism that is used to transfer a liquid from one place to ...
PPTX
Causes of Flooding by Slidesgo sdnl;asnjdl;asj.pptx
PPTX
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
PDF
Urban Design Final Project-Context
PDF
Chalkpiece Annual Report from 2019 To 2025
PPTX
Complete Guide to Microsoft PowerPoint 2019 – Features, Tools, and Tips"
PDF
Design Thinking - Module 1 - Introduction To Design Thinking - Dr. Rohan Dasg...
PDF
GREEN BUILDING MATERIALS FOR SUISTAINABLE ARCHITECTURE AND BUILDING STUDY
BRANDBOOK-Presidential Award Scheme-Kenya-2023
YOW2022-BNE-MinimalViableArchitecture.pdf
building Planning Overview for step wise design.pptx
LITERATURE CASE STUDY DESIGN SEMESTER 5.pptx
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
Media And Information Literacy for Grade 12
Integrated-2D-and-3D-Animation-Bridging-Dimensions-for-Impactful-Storytelling...
AD Bungalow Case studies Sem 2.pptxvwewev
Skskkxiixijsjsnwkwkaksixindndndjdjdjsjjssk
Phone away, tabs closed: No multitasking
mahatma gandhi bus terminal in india Case Study.pptx
Entrepreneur intro, origin, process, method
pump pump is a mechanism that is used to transfer a liquid from one place to ...
Causes of Flooding by Slidesgo sdnl;asnjdl;asj.pptx
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
Urban Design Final Project-Context
Chalkpiece Annual Report from 2019 To 2025
Complete Guide to Microsoft PowerPoint 2019 – Features, Tools, and Tips"
Design Thinking - Module 1 - Introduction To Design Thinking - Dr. Rohan Dasg...
GREEN BUILDING MATERIALS FOR SUISTAINABLE ARCHITECTURE AND BUILDING STUDY

"Designing for the Mobile Web" by Michael Dick (December 2010)