SlideShare a Scribd company logo
Making your site mobile-friendly
 TIPS AND TECHNIQUES FOR A BETTER MOBILE PRESENCE




Patrick H. Lauke / Developing for Mobile Applications in Education / DevCSI / Reading / 21 July 2010
mobile web is
increasingly important
we need a site that
 works on iPhone
...works on iPhone...
    oh, and iPad
“remove iPhone from ass”
  Peter-Paul Koch, The iPhone obsession
        www.quirksmode.org/blog/archives/2010/02/the_iphone_obse.html
make your site work on
all (most) mobile devices
Making your site mobile-friendly - DevCSI Reading 21.07.2010
1. do nothing
not WAP or text anymore...
mobile browsers
will work ok-ish
“But the mobile context...”
2. separate mobile site
  (m.flickr.com, mobile.mysite.com, ...)
beware browser sniffing
     photo: http://www.flickr.com/photos/timdorr/2096272747/
offer users choice:
desktop or mobile?
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
refactored for small screen,
not dumbed down for mobile
3. single adaptive site
nothing new...
fluid layout, progressive enhancement, graceful degradation
CSS 2 Media Types
   (screen, print, handheld)
CSS 2.1 Media Types

<link rel="stylesheet" ...
media="print" href="...">

@import url("...") print;

@media print {
  // insert CSS rules here
}
CSS 3 Media Queries
  “...the new hotness” Jeffrey Zeldman
    http://www.zeldman.com/2010/04/08/best-aea-yet/
CSS 3 Media Queries

● build and extend CSS 2.1 Media Types
● more granular control of capabilities

● width, height, orientation, color, resolution, …



http://www.w3.org/TR/css3-mediaqueries/
CSS 3 Media Queries
<link rel="stylesheet" ...
media="screen and (max-width:480px)" href="...">

@import url("...") screen and (max-width:480px);

@media screen and (max-width:480px) {
  // insert CSS rules here
}
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
viewport meta
viewport meta

● desktop: viewport = visible area of browser
●
  mobile: “virtual viewport”, physical pixels, zoom
●
  viewport meta gives hints
viewport meta

<meta name="viewport"
content="width=device-width">

<meta name="viewport"
content="width=320, initial-
scale=2.3,user-scalable=no">
http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html
Making your site mobile-friendly - DevCSI Reading 21.07.2010
minimise data
and server requests
(minify JavaScript, combine CSS, …)
minimise data

● data transfer over network can be slow
● compress images (PNGCrush)

● optimise your HTML (death to div-itis)

● minify JavaScript

● combine CSS
minimise server requests

● each request has overhead
● limit to concurrent requests

● caching not reliable (e.g. iPhone > 25Kb)
CSS sprites
 Dave Shea, A List Apart
 www.alistapart.com/articles/sprites
width: 50px; height: 50px;
background: url(icons.gif) no-repeat -51px 0;
data URLs
http://software.hixie.ch/utilities/cgi/data/data
data URLs
<img width="48" height="48" alt="Redux gravatar"
src="data:image/jpeg,%FF%D8%FF%E0%00%10JFIF
%00%01%01%01%00H%00H%00%00%FF% … ">

h1 {
     background: url("data:image/jpeg,%FF%D8%FF
%E0%00%10JFIF%00%01 … ") no-repeat left top;
}
native app vs web app
HTML5
<!DOCTYPE html>
video, audio and canvas on any device
           without plugins
         (Java / Flash / Silverlight not ubiquitous)
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - DevCSI Reading 21.07.2010
HTML5 (and friends) has
lots more APIs for developers
       (for powerful client-side apps)
isgeolocationpartofhtml5.com
geolocation
navigator.geolocation.getCurrentPosition(success, error);
navigator.geolocation.watchCurrentPosition(success, error);

function success(position) {
   /* where's Wally? */
   var lat = position.coords.latitude;
   var long = position.coords.longitude;
   ...
}
offline detection...
window.addEventListener('online', function(){ … }, true);
window.addEventListener('offline', function(){ … }, true);
application cache
<html manifest=”blah.manifest”>

CACHE MANIFEST
images/sprites.png
scripts/common.js
scripts/jquery.js
styles/global.css
data.xml

NETWORK:
resources/news.xml

FALLBACK:
images/ offline/not-available.png
…and more (coming)
WebGL, <device>, Contacts API …
1. do nothing
2. separate mobile site
3. single adaptive site
www.opera.com/developer
                        patrick.lauke@opera.com
people.opera.com/patrickl/presentations/devcsi-mobile_21.07.2010/devcsi-mobile_21.07.2010.pdf

More Related Content

What's hot (20)

PPTX
Open source javascript libraries for mobile web applications in 2012
Data Fok
 
PPT
Bar Camp Iphone Web Hackery
Andy Edmonds
 
PPTX
Mobile Web on Touch Event and YUI
Morgan Cheng
 
PDF
Making your site mobile-friendly - ThoughtWorks Manchester GeekNights 17.11.2010
Patrick Lauke
 
PPTX
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
St. Petersburg College
 
PDF
モバイル検索とアプリ
Kenichi Suzuki
 
ODP
Firefox Mobile
Toni Hermoso Pulido
 
PDF
Remote debug in mobile browser
chengbo xu
 
PPT
Design Caffeine For Search and Browse UI IASummit2010
DesignCaffeine, Inc.
 
PDF
Now you see me... Adaptive Web Design and Development
Jonas Päckos
 
KEY
Rapid Testing, Rapid Development
mennovanslooten
 
PDF
Accessibility - A feature you can build
Monika Piotrowicz
 
PDF
E learningakept2014
Mazlan Salleh
 
PDF
Accessible web applications
Wojtek Zając
 
PDF
Responsive websites. Toolbox
Wojtek Zając
 
PDF
Building WebApp with HTML5
Tien Tran Le Duy
 
PDF
Responsive Web Design: buzzword or revolution?
Wojtek Zając
 
PDF
jQuery Conference San Diego 2014 - Web Performance
dmethvin
 
KEY
Tools that help and speed up RWD dev
Matjaž Korošec
 
PPTX
Selenium Tutorial-Automate web application on ios safari browser using appium
Mukesh Otwani
 
Open source javascript libraries for mobile web applications in 2012
Data Fok
 
Bar Camp Iphone Web Hackery
Andy Edmonds
 
Mobile Web on Touch Event and YUI
Morgan Cheng
 
Making your site mobile-friendly - ThoughtWorks Manchester GeekNights 17.11.2010
Patrick Lauke
 
Building a Simple Mobile-optimized Web App Using the jQuery Mobile Framework
St. Petersburg College
 
モバイル検索とアプリ
Kenichi Suzuki
 
Firefox Mobile
Toni Hermoso Pulido
 
Remote debug in mobile browser
chengbo xu
 
Design Caffeine For Search and Browse UI IASummit2010
DesignCaffeine, Inc.
 
Now you see me... Adaptive Web Design and Development
Jonas Päckos
 
Rapid Testing, Rapid Development
mennovanslooten
 
Accessibility - A feature you can build
Monika Piotrowicz
 
E learningakept2014
Mazlan Salleh
 
Accessible web applications
Wojtek Zając
 
Responsive websites. Toolbox
Wojtek Zając
 
Building WebApp with HTML5
Tien Tran Le Duy
 
Responsive Web Design: buzzword or revolution?
Wojtek Zając
 
jQuery Conference San Diego 2014 - Web Performance
dmethvin
 
Tools that help and speed up RWD dev
Matjaž Korošec
 
Selenium Tutorial-Automate web application on ios safari browser using appium
Mukesh Otwani
 

Similar to Making your site mobile-friendly - DevCSI Reading 21.07.2010 (20)

PDF
смартфоны и планшетники. веб разработка помимо десктопа. Patrick h. lauke. зал 1
rit2011
 
PDF
Responsive Websites
Joe Seifi
 
KEY
Optimizing content for the "mobile web"
Chris Mills
 
PDF
Media queries
Kevin DeRudder
 
PPTX
HTML5 on Mobile(For Designer)
Adam Lu
 
PDF
Pinkoi Mobile Web
mikeleeme
 
PPTX
Mobile Best Practices
mintersam
 
PDF
(Practical) Beyond Responsive Web Design (WordCamp Miami 2011)
arborwebsolutions
 
PDF
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Patrick Lauke
 
PDF
Great Responsive-ability Web Design
Mike Wilcox
 
PPT
The Mobile Development Landscape
Ambert Ho
 
PDF
CSS3: Simply Responsive
Denise Jacobs
 
KEY
CSS for Mobile
Daniel Ryan
 
PDF
Html 5 mobile - nitty gritty
Mario Noble
 
PDF
CSS3: Using media queries to improve the web site experience
Zoe Gillenwater
 
PDF
Responsive Web Site Design
Jussi Pohjolainen
 
PDF
Designing for the Mobile Web
Refresh Bmore
 
PPTX
Responsive Web Design
Julia Vi
 
PDF
Proactive Responsive Design
Nathan Smith
 
KEY
Building Responsive Websites and Apps with Drupal
Four Kitchens
 
смартфоны и планшетники. веб разработка помимо десктопа. Patrick h. lauke. зал 1
rit2011
 
Responsive Websites
Joe Seifi
 
Optimizing content for the "mobile web"
Chris Mills
 
Media queries
Kevin DeRudder
 
HTML5 on Mobile(For Designer)
Adam Lu
 
Pinkoi Mobile Web
mikeleeme
 
Mobile Best Practices
mintersam
 
(Practical) Beyond Responsive Web Design (WordCamp Miami 2011)
arborwebsolutions
 
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Patrick Lauke
 
Great Responsive-ability Web Design
Mike Wilcox
 
The Mobile Development Landscape
Ambert Ho
 
CSS3: Simply Responsive
Denise Jacobs
 
CSS for Mobile
Daniel Ryan
 
Html 5 mobile - nitty gritty
Mario Noble
 
CSS3: Using media queries to improve the web site experience
Zoe Gillenwater
 
Responsive Web Site Design
Jussi Pohjolainen
 
Designing for the Mobile Web
Refresh Bmore
 
Responsive Web Design
Julia Vi
 
Proactive Responsive Design
Nathan Smith
 
Building Responsive Websites and Apps with Drupal
Four Kitchens
 
Ad

More from Patrick Lauke (20)

PDF
These (still) aren't the SCs you're looking for ... (mis)adventures in WCAG 2...
Patrick Lauke
 
PDF
Pointer Events Working Group update / TPAC 2023 / Patrick H. Lauke
Patrick Lauke
 
PDF
These aren't the SCs you're looking for ... (mis)adventures in WCAG 2.x inter...
Patrick Lauke
 
PDF
These aren't the SCs you're looking for ... (mis)adventures in WCAG 2.x inter...
Patrick Lauke
 
PDF
Too much accessibility - good intentions, badly implemented / Public Sector F...
Patrick Lauke
 
PDF
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Patrick Lauke
 
PDF
Evaluating web sites for accessibility with Firefox / Manchester Digital Acce...
Patrick Lauke
 
PDF
Managing and educating content editors - experiences and ideas from the trenc...
Patrick Lauke
 
PDF
Implementing Web Standards across the institution: trials and tribulations of...
Patrick Lauke
 
PDF
Geolinking content - experiments in connecting virtual and physical places / ...
Patrick Lauke
 
PDF
All change for WCAG 2.0 - what you need to know about the new accessibility g...
Patrick Lauke
 
PDF
Web Accessibility - an introduction / Salford Business School briefing / Univ...
Patrick Lauke
 
PDF
Doing it in style - creating beautiful sites, the web standards way / WebDD /...
Patrick Lauke
 
PDF
Web standards pragmatism - from validation to the real world / Web Developers...
Patrick Lauke
 
PDF
Ian Lloyd/Patrick H. Lauke: Accessified - practical accessibility fixes any w...
Patrick Lauke
 
PDF
The state of the web - www.salford.ac.uk / 2007
Patrick Lauke
 
PDF
Keyboard accessibility - just because I don't use a mouse doesn't mean I'm se...
Patrick Lauke
 
PDF
WAI-ARIA An introduction to Accessible Rich Internet Applications / JavaScrip...
Patrick Lauke
 
PDF
WAI-ARIA An introduction to Accessible Rich Internet Applications / CSS Minsk...
Patrick Lauke
 
PDF
WAI-ARIA An introduction to Accessible Rich Internet Applications / AccessU 2018
Patrick Lauke
 
These (still) aren't the SCs you're looking for ... (mis)adventures in WCAG 2...
Patrick Lauke
 
Pointer Events Working Group update / TPAC 2023 / Patrick H. Lauke
Patrick Lauke
 
These aren't the SCs you're looking for ... (mis)adventures in WCAG 2.x inter...
Patrick Lauke
 
These aren't the SCs you're looking for ... (mis)adventures in WCAG 2.x inter...
Patrick Lauke
 
Too much accessibility - good intentions, badly implemented / Public Sector F...
Patrick Lauke
 
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Patrick Lauke
 
Evaluating web sites for accessibility with Firefox / Manchester Digital Acce...
Patrick Lauke
 
Managing and educating content editors - experiences and ideas from the trenc...
Patrick Lauke
 
Implementing Web Standards across the institution: trials and tribulations of...
Patrick Lauke
 
Geolinking content - experiments in connecting virtual and physical places / ...
Patrick Lauke
 
All change for WCAG 2.0 - what you need to know about the new accessibility g...
Patrick Lauke
 
Web Accessibility - an introduction / Salford Business School briefing / Univ...
Patrick Lauke
 
Doing it in style - creating beautiful sites, the web standards way / WebDD /...
Patrick Lauke
 
Web standards pragmatism - from validation to the real world / Web Developers...
Patrick Lauke
 
Ian Lloyd/Patrick H. Lauke: Accessified - practical accessibility fixes any w...
Patrick Lauke
 
The state of the web - www.salford.ac.uk / 2007
Patrick Lauke
 
Keyboard accessibility - just because I don't use a mouse doesn't mean I'm se...
Patrick Lauke
 
WAI-ARIA An introduction to Accessible Rich Internet Applications / JavaScrip...
Patrick Lauke
 
WAI-ARIA An introduction to Accessible Rich Internet Applications / CSS Minsk...
Patrick Lauke
 
WAI-ARIA An introduction to Accessible Rich Internet Applications / AccessU 2018
Patrick Lauke
 
Ad

Recently uploaded (20)

PPTX
Nutri-QUIZ-Bee-Elementary.pptx...................
ferdinandsanbuenaven
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PPTX
Gall bladder, Small intestine and Large intestine.pptx
rekhapositivity
 
PDF
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PPTX
How to Manage Access Rights & User Types in Odoo 18
Celine George
 
PDF
1, 2, 3… E MAIS UM CICLO CHEGA AO FIM!.pdf
Colégio Santa Teresinha
 
PPTX
LEGAL ASPECTS OF PSYCHIATRUC NURSING.pptx
PoojaSen20
 
PDF
BÀI TẬP BỔ TRỢ THEO LESSON TIẾNG ANH - I-LEARN SMART WORLD 7 - CẢ NĂM - CÓ ĐÁ...
Nguyen Thanh Tu Collection
 
PPTX
Accounting Skills Paper-I, Preparation of Vouchers
Dr. Sushil Bansode
 
PPTX
How to Configure Lost Reasons in Odoo 18 CRM
Celine George
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PPTX
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
PPTX
Latest Features in Odoo 18 - Odoo slides
Celine George
 
PPTX
How to Create Rental Orders in Odoo 18 Rental
Celine George
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PDF
IMP NAAC-Reforms-Stakeholder-Consultation-Presentation-on-Draft-Metrics-Unive...
BHARTIWADEKAR
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PPTX
PPT on the Development of Education in the Victorian England
Beena E S
 
Nutri-QUIZ-Bee-Elementary.pptx...................
ferdinandsanbuenaven
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
Gall bladder, Small intestine and Large intestine.pptx
rekhapositivity
 
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
How to Manage Access Rights & User Types in Odoo 18
Celine George
 
1, 2, 3… E MAIS UM CICLO CHEGA AO FIM!.pdf
Colégio Santa Teresinha
 
LEGAL ASPECTS OF PSYCHIATRUC NURSING.pptx
PoojaSen20
 
BÀI TẬP BỔ TRỢ THEO LESSON TIẾNG ANH - I-LEARN SMART WORLD 7 - CẢ NĂM - CÓ ĐÁ...
Nguyen Thanh Tu Collection
 
Accounting Skills Paper-I, Preparation of Vouchers
Dr. Sushil Bansode
 
How to Configure Lost Reasons in Odoo 18 CRM
Celine George
 
community health nursing question paper 2.pdf
Prince kumar
 
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
Latest Features in Odoo 18 - Odoo slides
Celine George
 
How to Create Rental Orders in Odoo 18 Rental
Celine George
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
IMP NAAC-Reforms-Stakeholder-Consultation-Presentation-on-Draft-Metrics-Unive...
BHARTIWADEKAR
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PPT on the Development of Education in the Victorian England
Beena E S
 

Making your site mobile-friendly - DevCSI Reading 21.07.2010