SlideShare a Scribd company logo
СМАРТФОНЫ И ПЛАНШЕТНИКИ
MOBILE-FRIENDLY ВЕБ-РАЗРАБОТКА ПОМИМО ДЕСКТОПА




Patrick H. Lauke / RIT++ Conference 2011 / Moscow / 25 April 2011
mobile web is
increasingly important
we need a website
optimised for iPhone
oh, und another one
    for the iPad
“remove iPhone from ass”
 Peter-Paul Koch, The iPhone obsession
       www.quirksmode.org/blog/archives/2010/02/the_iphone_obse.html
sites that work on (almost)
    all mobile devices
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
what exactly is a
“mobile device”?
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
3 approaches
1. do nothing
not WAP or text anymore...
modern mobile browsers
work ok with “normal” sites
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
“but the mobile context...”
“Desktop computers and mobile devices are so different that
  the only way to offer a great user experience is to create two
separate designs — typically with fewer features for mobile.”
                 www.useit.com/alertbox/mobile-redesign.html
2. separate mobile site
  (m.flickr.com, mobile.mysite.com, ...)
внимание: browser sniffing
      photo: http://www.flickr.com/photos/timdorr/2096272747/
let the user decide:
desktop or mobile?
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
refactored for small screen,
not dumbed down for mobile
3. single adaptive site
nothing new...
fluid layout, progressive enhancement, graceful degradation
The Sage “... accepts the ebb and flow of things,
    Nurtures them, but does not own them,”
               Tao Te Ching; 2 Abstraction




          www.alistapart.com/articles/dao
adaptive layouts
CSS 2.1 Media Types
Media types
all           braille
embossed      handheld
print         projection
screen        speech
tty           tv
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
● extend concept of CSS 2.1 Media Types
● more granular control of capabilities



http://www.w3.org/TR/css3-mediaqueries/
Media features
width                 color
height                color-index
device-width          monochrome
device-height         resolution
orientation           scan
aspect-ratio          grid
device-aspect-ratio
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
}
Multiple media queries
@media screen and (max-width:480px) {
  // screen device and width < 480px
}

@media screen and (max-width:980px) {
  // screen device and width < 980px
}

@media screen and (min-width:980px) {
  // screen device and width > 980px
}
www.alistapart.com/articles/responsive-web-design
http://mediaqueri.es
http://mediaqueri.es
http://mediaqueri.es
http://mediaqueri.es
www.themaninblue.com/writing/perspective/2004/09/21
“not a magic bullet...”
viewport meta
physical vs virtual pixels
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
mobile devices lie
(to better serve the user)
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
viewport meta
suggests sizing to mobile browser
viewport meta
<meta name="viewport" content="width=320">

http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html
Viewport properties

width                 initial-scale
height                minimum-scale
user-scalable         maximum-scale
<meta name="viewport" content="width=480">
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
<meta name="viewport" content="width=550">
<meta name="viewport" content="width=550">
<meta name="viewport" content="width=550,
           maximum-scale=1.0">
CSS Device Adaptation
@viewport {
  width: 320px;
  zoom: 2.3;
  user-zoom: fixed;
}

dev.w3.org/csswg/css-device-adapt

Currently only in Opera Mobile 11 with -o- prefix
dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport
Viewport properties

width / min-width / max-width      user-zoom

height / min-height / max-height   orientation

zoom / min-zoom / max-zoom
@media + @viewport
@media screen and (max-device-width: 550px) {
    @-o-viewport {
        width: 550px;
    }
}

only apply viewport width fixing on small-screen devices
BUG ALERT: Opera currently not re-running Media Queries on portrait/landscape switch
touch interfaces
:hover
onmouseover(...)
onmouseout(...)
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
no hover on
touch devices*
*but some devices/browsers fake it
:focus
onfocus(...)
 onblur(...)
no focus on
touch devices*
 *only after an actual click
touch events
window.addEventListener('touchstart', function(e){ … }, true);
window.addEventListener('touchmove', function(e){ … }, true);
window.addEventListener('touchend', function(e){ … }, true);

e.touches[0].pageX; e.touches[0].pageY; …
progressive enhancement:
mouse, keyboard and touch events
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
multimedia
video, audio und canvas
    without plug-ins
(Java / Flash / Silverlight absent from some devices)
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011
www.splintered.co.uk/experiments/archives/paranoid_0.3
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;
   ...
}
progressive enhancement:
   geolocation in addition to other
methods (IP address look-up, form, ...)
online/offline
application cache,
localStorage/sessionStorage,
     WebSQL, IndexDB
…and more (work in progress)
 WebGL, device API, orientation …
adaptive techniques
not just for “mobile”
twitter.com/#!/stephenhay/status/23350345962889216
1. do nothing
2. separate mobile site
3. single adaptive site
Спасибо
www.opera.com/developer
   patrick.lauke@opera.com

More Related Content

PDF
смартфоны и планшетники. веб разработка помимо десктопа. Patrick h. lauke. зал 1
PDF
Handys und Tablets - Webentwicklung jenseits des Desktops - MobileTech Confer...
PDF
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
PDF
Handys und Tablets - Webentwicklung jenseits des Desktops - WebTech Mainz 12....
PDF
"Designing for the Mobile Web" by Michael Dick (December 2010)
PDF
Making your site mobile-friendly - DevCSI Reading 21.07.2010
PDF
Making your site mobile-friendly - Ignite Manchester 01.03.2010
PDF
Making your site mobile-friendly / RIT++
смартфоны и планшетники. веб разработка помимо десктопа. Patrick h. lauke. зал 1
Handys und Tablets - Webentwicklung jenseits des Desktops - MobileTech Confer...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Handys und Tablets - Webentwicklung jenseits des Desktops - WebTech Mainz 12....
"Designing for the Mobile Web" by Michael Dick (December 2010)
Making your site mobile-friendly - DevCSI Reading 21.07.2010
Making your site mobile-friendly - Ignite Manchester 01.03.2010
Making your site mobile-friendly / RIT++

Viewers also liked (8)

PDF
HTML5 kickstart - Brooklyn Beta workshop 21.10.2010
PDF
Making your site mobile-friendly - Standards-Next 12.06.2010
PDF
Webseiten für mobile Geräte - MobileTech Conference 2010 Mainz
PDF
Getting touchy - an introduction to touch and pointer events / Web Rebels / O...
PDF
Fintech: The User Experience opportunity
PPTX
Tabla comparativa-etapas de la prehistoria-
PPT
15 problemas genética resueltos y explicados
HTML5 kickstart - Brooklyn Beta workshop 21.10.2010
Making your site mobile-friendly - Standards-Next 12.06.2010
Webseiten für mobile Geräte - MobileTech Conference 2010 Mainz
Getting touchy - an introduction to touch and pointer events / Web Rebels / O...
Fintech: The User Experience opportunity
Tabla comparativa-etapas de la prehistoria-
15 problemas genética resueltos y explicados
Ad

Similar to Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011 (20)

PDF
Adaptive Layouts - standards>next London 28.05.2011
PDF
The specs behind the sex, mobile-friendly layout beyond the desktop
PDF
Adaptive layouts - standards>next Manchester 23.03.2011
KEY
Optimizing content for the "mobile web"
PPTX
Responsive Web Design
PDF
Great Responsive-ability Web Design
PDF
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
PDF
Responsive Websites
PDF
Responsive Web Site Design
PDF
Meta layout: a closer look at media queries
PDF
Responsive websites. Toolbox
PPTX
Chapter 17: Responsive Web Design
PDF
Beyond Responsive Web Design
KEY
Building Responsive Websites and Apps with Drupal
PDF
Making your site mobile-friendly - ThoughtWorks Manchester GeekNights 17.11.2010
PDF
Mobile web development techniques (and Opera's developer tools)
PPTX
Using Responsive Web Design To Make Your Web Work Everywhere
PDF
Responsive web design
PPTX
HTML and Responsive Design
PPT
Responsive Web Design
Adaptive Layouts - standards>next London 28.05.2011
The specs behind the sex, mobile-friendly layout beyond the desktop
Adaptive layouts - standards>next Manchester 23.03.2011
Optimizing content for the "mobile web"
Responsive Web Design
Great Responsive-ability Web Design
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
Responsive Websites
Responsive Web Site Design
Meta layout: a closer look at media queries
Responsive websites. Toolbox
Chapter 17: Responsive Web Design
Beyond Responsive Web Design
Building Responsive Websites and Apps with Drupal
Making your site mobile-friendly - ThoughtWorks Manchester GeekNights 17.11.2010
Mobile web development techniques (and Opera's developer tools)
Using Responsive Web Design To Make Your Web Work Everywhere
Responsive web design
HTML and Responsive Design
Responsive Web Design
Ad

More from Patrick Lauke (20)

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

Recently uploaded (20)

PPT
Teaching material agriculture food technology
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Cloud computing and distributed systems.
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Big Data Technologies - Introduction.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Modernizing your data center with Dell and AMD
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
A Presentation on Artificial Intelligence
Teaching material agriculture food technology
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Spectral efficient network and resource selection model in 5G networks
NewMind AI Weekly Chronicles - August'25 Week I
20250228 LYD VKU AI Blended-Learning.pptx
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
MYSQL Presentation for SQL database connectivity
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Cloud computing and distributed systems.
“AI and Expert System Decision Support & Business Intelligence Systems”
Network Security Unit 5.pdf for BCA BBA.
Big Data Technologies - Introduction.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Modernizing your data center with Dell and AMD
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Mobile App Security Testing_ A Comprehensive Guide.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
A Presentation on Artificial Intelligence

Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RIT++ - Moscow 25.04.2011