SlideShare a Scribd company logo
1 of 44
Download to read offline
Web Accessibility

RESPONSIVE WEB DESIGN
November 7, 2013

11/8/2013

© 2013 Interactive Accessibility

1
The Accessibility Experts ™

Kathleen Wahlbin
Email: KathyW@ia11y.com
Phone: 978-443-0798
http://www.interactiveaccessibility.com

11/8/2013

© 2013 Interactive Accessibility

2
Mobile, Tablets, Laptops, & Desktops

RESPONSIVE DESIGN

11/8/2013

© 2013 Interactive Accessibility

3
What is the Problem?
• Websites are not optimized for the many different
devices available
– Sizes
– Capabilities
– Interaction methods

• User experience less than ideal on many sites

11/8/2013

© 2013 Interactive Accessibility

4
Not Just a Problem on Mobile…
• The lines are blurring…

11/8/2013

© 2013 Interactive Accessibility

5
The Old Reality…
•
•
•
•
•

Big screen
Fast internet connection
Powerful processor
Efficient input (keyboard/mouse)
Desk with chair

11/8/2013

© 2013 Interactive Accessibility

6
The New Reality….

One handed

Outside light

Aging Eyes

Busy Eyes and Hands

Noisy, public spaces

Fat fingers
11/8/2013

© 2013 Interactive Accessibility

7
Majority of Interactions are Digital

Source: http://www.google.com/think/research-studies/thenew-multi-screen-world-study.html

11/8/2013

© 2013 Interactive Accessibility

8
History of Screen Resolution
•
•
•
•

Desktop resolution has increased
More people use high resolution
Many resolutions available
And of course, mobile devices

11/8/2013

© 2013 Interactive Accessibility

Sources: W3C Schools, nngroup.com

9
Mobile Screen Resolution
• iPhone

1136 x 640
640 x 960
320 x 480

– 1st / 2nd
– 3rd
– Mini

1024 x 768
2048 x 1536
1024 x 768

– Phones
– Tablets

320 or 360 wide (typically)
800 wide

• iPad:

• Android

Sources:
Mobilemoxie.com
Mediag.com
Onbile.com
Developer.android.com

11/8/2013

Android

– 5
– 4S
– 3GS

© 2013 Interactive Accessibility

10
We Need to Rethinking the Web
• Interaction models are changing
• Dependent on many factors
– Browsers
– Device capabilities
– Situation

• Screen resolution and size

11/8/2013

© 2013 Interactive Accessibility

11
What is Responsive Web Design (RWD)?

11/8/2013

© 2013 Interactive Accessibility

12
What is RWD?
• Technique of building a website or application for all devices
• One code base optimized for the medium and viewport size
• It’s about adopting a more flexible, device-agnostic approach

Same set of code
11/8/2013

© 2013 Interactive Accessibility

13
Responsive Design – 1024px Desktop

11/8/2013

© 2013 Interactive Accessibility

14
Responsive Design - 768px Tablet

11/8/2013

© 2013 Interactive Accessibility

15
Responsive Design – 360px Mobile

11/8/2013

© 2013 Interactive Accessibility

16
What is the Difference Between RWD & Mobile Website?

11/8/2013

© 2013 Interactive Accessibility

17
Mobile Site vs. RWD
• Mobile website is:
–
–
–
–
–

Hard coded for one or a few screen resolutions
Coded more simply
Not dynamically responsive to changing resolutions
Typically not appealing on larger screens / desktops
Separate from the desktop website – two code bases

• Whereas RWD is:

– One code base; one website
– Not hard-coded – responds to changing resolutions
– More dynamic code – looks at device resolution to determine space
available for laying out content in a grid
– Adaptive: may show elements, resize text/images, reflow elements as
resolution changes
– Looks fine on desktop

11/8/2013

© 2013 Interactive Accessibility

18
How is RWD Implemented?
• Fluid, flexible layout
– Uses relative sizing of grids, not fixed
– Based on columns that can be reflowed
– Allows grid layout to adjust to viewport size

• Media queries
– Target media types and media features
– Tests for max/min width & height on viewport and device,
device orientation, aspect radio, resolution

• Responsive images
– Relative widths (CSS) or dynamic replacement (JS)
11/8/2013

© 2013 Interactive Accessibility

19
Old Way vs. New Way
• CSS 2.1 – Media Types
<link href="screen.css“ … media="screen“>

• CSS 3 – Media Queries
@media screen and (max-width: 30em) {
// mobile styles here
}

11/8/2013

© 2013 Interactive Accessibility

20
Browser Compatibility
• RWD works in the following browsers
–
–
–
–
–

IE 9+
Opera 9.5+
Safari 3+
Firefox 3.5+
Chrome

• Can use other browsers with the use of JavaScript
coding

11/8/2013

© 2013 Interactive Accessibility

21
Responsive Sites

11/8/2013

© 2013 Interactive Accessibility

22
Is Responsive Design Accessible?

RWD CHALLENGES &
OPPORTUNITIES

11/8/2013

© 2013 Interactive Accessibility

23
Is RWD Good for Accessibility?

11/8/2013

© 2013 Interactive Accessibility

24
Benefits of RWD
• Automatically adjust to user’s device
• Inherent inclination to follow web standards
• Mobile first + progressive enhancement
– Designing first for mobile focuses on key features and
accessibility
– As screen sizes / resolution increase, add features, content, and
interaction modes

• Sites can also remember accessibility preferences
– Text size
– Spacing
– Video options, etc.
11/8/2013

© 2013 Interactive Accessibility

25
Is RWD Good for People with Disabilities?

11/8/2013

© 2013 Interactive Accessibility

26
Low Vision Users
• Users with low vision may

– Have a lower screen resolution
– Magnify the screen using browser settings

• Benefits

– Building experiences mobile first
– Images can be optimized
– Magnified screen adjusts to smaller viewport size (fluid layout)

• Some elements may be removed
• Elements are moved below (reflowed) to minimize / eliminate scrolling
• Adjusts within browser

• Challenges

– Permanence of place – as resolutions change, elements may move to an
unfamiliar place
– Sometimes text will be cut off in magnified page on desktop browsers

11/8/2013

© 2013 Interactive Accessibility

27
Blind Users
• Users who are blind will
– Use a screen reader
– Rely partially on memory and mental map of site structure for
navigation

• Benefits
– Having less content on a page can be easier to understand
and navigate

• Challenges
– Changing organization and navigation is harder to use
– Reading order may not match visual order
11/8/2013

© 2013 Interactive Accessibility

28
Mobility-Impaired Users
• Users with mobility impairments may
– Use alternative input devices – switches, voice

• Benefits
– Short pages and streamlined navigation easier to use

• Challenges
– Touch interaction can be difficult

11/8/2013

© 2013 Interactive Accessibility

29
5 Practical Tips

TECHNIQUES FOR RESPONSIVE
DESIGN

11/8/2013

© 2013 Interactive Accessibility

30
Mobile First
• Build for less-capable
devices / browsers first
• Enhance for more
advanced
platforms/browsers
• Design for smallest screen
resolution
Source: http://www.abookapart.com/products/mobile-first

11/8/2013

© 2013 Interactive Accessibility

31
Reduce Cognitive & Visual Load
•
•
•
•
•

Layout
Images
Line and letter spacing (leading / kerning)
Readable typefaces
Responsive typography

11/8/2013

© 2013 Interactive Accessibility

32
Use Images that Work Across Devices
• Challenges:
– Image clarity, designing images to work on all devices and
screen resolutions
– Download image size

• Solutions:
–
–
–
–

11/8/2013

Image optimization
Icon fonts
New HTML picture element (www.responsiveimages.org)
Image replacement with polyfills or media queries

© 2013 Interactive Accessibility

33
Follow Web Standards
• No more platform hacks
• Custom controls minimized
• Mouse-only functions eliminated

11/8/2013

© 2013 Interactive Accessibility

34
Design for Different Input Methods
• Challenges for all users
– Touch zone size
– Fat finger syndrome – hard to select right icon

• Different input devices
– Switch device
– One handed
– Motor control

11/8/2013

© 2013 Interactive Accessibility

35
How do you hold your device?

11/8/2013

© 2013 Interactive Accessibility

36
Touch Zones
•
•
•
•

Position affects areas reached by thumb and fingers
Landscape vs. portrait position affects it too
Typical placement of fingers is a factor for RWD
Consider touch zones that are easy to reach

11/8/2013

© 2013 Interactive Accessibility

37
What are the Easy Touch Zones?

Source: http://www.lukew.com/ff/entry.asp?1649
11/8/2013

© 2013 Interactive Accessibility

38
Touch Interface
• Different interpretations of optimal target size
– Apple:
– Microsoft:
– Nokia:

44 px
26-34px
28 px / 1 cm x 1 cm

• MIT Touch Lab study
– Average index finger width is
1.6 – 2 cm = 45 – 57 px
– Thumbs: 2.5 cm = 72 px

11/8/2013

© 2013 Interactive Accessibility

39
Design Touch Targets
• A consideration as RWD resizes content, icons, spacing of
grouped items, and other targets
• Design large touch targets based on density-independent pixels
(dp)
– WARNING: pixel density changes per handset

– Good balance between information density and targetability of UI
Elements
– Spacing between UI elements should be 8 dp

Reference: http://developer.android.com/design/style/metrics-grids.html

11/8/2013

© 2013 Interactive Accessibility

40
Pros & Cons of RWD
• Pros
– Only have to maintain single site
– Don’t have to deal with mobile-specific URLs
– Address a wide variety of devices

• Cons
– Additional time needed to for design
– Devices constantly changing
– Designing the optimal experience / usability for all devices
take more time
– Have to consider performance across all devices
11/8/2013

© 2013 Interactive Accessibility

41
Is RWD Good for Accessibility?
• YES!!!
– Better usability
– Generally works better with assistive technology since code is
written to standards
– Optimize experience across devices and screen size

11/8/2013

© 2013 Interactive Accessibility

42
Questions?

11/8/2013

© 2013 Interactive Accessibility

43
Kathy Wahlbin

Email: KathyW@ia11y.com
Phone: 978-443-0798
http://www.interactiveaccessibility.com
@wahlbin

Thank you!

More Related Content

What's hot

BBDO Whitepaper—Responsive & Adaptive Design
BBDO Whitepaper—Responsive & Adaptive DesignBBDO Whitepaper—Responsive & Adaptive Design
BBDO Whitepaper—Responsive & Adaptive DesignJaneMuder
 
6 mobile user interface design bb
6   mobile user interface design bb6   mobile user interface design bb
6 mobile user interface design bbShahid Riaz
 
Responsive & Adaprove Design
Responsive & Adaprove DesignResponsive & Adaprove Design
Responsive & Adaprove DesignMike Vdovin
 
Responsive Design: Let's get Responsive!
Responsive Design: Let's get Responsive!Responsive Design: Let's get Responsive!
Responsive Design: Let's get Responsive!Courtney Jordan
 
Demystifying Mobile: Designing with Accessibility in Mind
Demystifying Mobile: Designing with Accessibility in MindDemystifying Mobile: Designing with Accessibility in Mind
Demystifying Mobile: Designing with Accessibility in MindInteractive Accessibility
 
Mobile Accessibility Best Practices & Trends
Mobile Accessibility Best Practices & TrendsMobile Accessibility Best Practices & Trends
Mobile Accessibility Best Practices & TrendsAidan Tierney
 
Mobile Information Architecture
Mobile Information ArchitectureMobile Information Architecture
Mobile Information ArchitectureAndy Fitzgerald
 
Mobile App vs Mobile Web Development
Mobile App vs Mobile Web DevelopmentMobile App vs Mobile Web Development
Mobile App vs Mobile Web DevelopmentTAG_education
 
Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti
 Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti   Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti
Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti Smash Tech
 
Responsive Web Design - more than just a buzzword
Responsive Web Design - more than just a buzzwordResponsive Web Design - more than just a buzzword
Responsive Web Design - more than just a buzzwordRuss Weakley
 
Information Architecture in Mobile
Information Architecture in MobileInformation Architecture in Mobile
Information Architecture in MobileLazar Petrakiev
 
Mobile Accessibility (MobA11y)
Mobile Accessibility (MobA11y)Mobile Accessibility (MobA11y)
Mobile Accessibility (MobA11y)Henny Swan
 
UI Design - Lessons Learned, Principles, and Best Practices
UI Design - Lessons Learned, Principles, and Best PracticesUI Design - Lessons Learned, Principles, and Best Practices
UI Design - Lessons Learned, Principles, and Best PracticesSamuel Chow
 
Basic Visual Design Principles and UI Design Best Practices
Basic Visual Design Principles and UI Design Best PracticesBasic Visual Design Principles and UI Design Best Practices
Basic Visual Design Principles and UI Design Best PracticesAvijit Chinara
 
Briding the Gap between Desktop and Mobile publishing
Briding the Gap between Desktop and Mobile publishingBriding the Gap between Desktop and Mobile publishing
Briding the Gap between Desktop and Mobile publishingTom Deryckere
 

What's hot (19)

BBDO Whitepaper—Responsive & Adaptive Design
BBDO Whitepaper—Responsive & Adaptive DesignBBDO Whitepaper—Responsive & Adaptive Design
BBDO Whitepaper—Responsive & Adaptive Design
 
6 mobile user interface design bb
6   mobile user interface design bb6   mobile user interface design bb
6 mobile user interface design bb
 
Responsive & Adaprove Design
Responsive & Adaprove DesignResponsive & Adaprove Design
Responsive & Adaprove Design
 
Is Testing With A Screen Reader Enough?
Is Testing With A Screen Reader Enough?Is Testing With A Screen Reader Enough?
Is Testing With A Screen Reader Enough?
 
Responsive Design: Let's get Responsive!
Responsive Design: Let's get Responsive!Responsive Design: Let's get Responsive!
Responsive Design: Let's get Responsive!
 
Demystifying Mobile: Designing with Accessibility in Mind
Demystifying Mobile: Designing with Accessibility in MindDemystifying Mobile: Designing with Accessibility in Mind
Demystifying Mobile: Designing with Accessibility in Mind
 
Mobile Accessibility Best Practices & Trends
Mobile Accessibility Best Practices & TrendsMobile Accessibility Best Practices & Trends
Mobile Accessibility Best Practices & Trends
 
Mobile hci
Mobile hciMobile hci
Mobile hci
 
Mobile Information Architecture
Mobile Information ArchitectureMobile Information Architecture
Mobile Information Architecture
 
Mobile App vs Mobile Web Development
Mobile App vs Mobile Web DevelopmentMobile App vs Mobile Web Development
Mobile App vs Mobile Web Development
 
WEB INTERFACE DESIGN
WEB INTERFACE DESIGNWEB INTERFACE DESIGN
WEB INTERFACE DESIGN
 
UI Design
UI DesignUI Design
UI Design
 
Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti
 Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti   Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti
Android UX-UI Design for fun and profit | Fernando Cejas | Tuenti
 
Responsive Web Design - more than just a buzzword
Responsive Web Design - more than just a buzzwordResponsive Web Design - more than just a buzzword
Responsive Web Design - more than just a buzzword
 
Information Architecture in Mobile
Information Architecture in MobileInformation Architecture in Mobile
Information Architecture in Mobile
 
Mobile Accessibility (MobA11y)
Mobile Accessibility (MobA11y)Mobile Accessibility (MobA11y)
Mobile Accessibility (MobA11y)
 
UI Design - Lessons Learned, Principles, and Best Practices
UI Design - Lessons Learned, Principles, and Best PracticesUI Design - Lessons Learned, Principles, and Best Practices
UI Design - Lessons Learned, Principles, and Best Practices
 
Basic Visual Design Principles and UI Design Best Practices
Basic Visual Design Principles and UI Design Best PracticesBasic Visual Design Principles and UI Design Best Practices
Basic Visual Design Principles and UI Design Best Practices
 
Briding the Gap between Desktop and Mobile publishing
Briding the Gap between Desktop and Mobile publishingBriding the Gap between Desktop and Mobile publishing
Briding the Gap between Desktop and Mobile publishing
 

Viewers also liked

Responsive web design ppt
Responsive web design pptResponsive web design ppt
Responsive web design pptNAWAZ KHAN
 
Responsive web design
Responsive web designResponsive web design
Responsive web designRuss Weakley
 
Responsive Web Design, ventaja, inconvenientes y recomendaciones
Responsive Web Design, ventaja, inconvenientes y recomendacionesResponsive Web Design, ventaja, inconvenientes y recomendaciones
Responsive Web Design, ventaja, inconvenientes y recomendacionesXavi Cardet
 
Articulo (Responsive Web Desing)
Articulo (Responsive Web Desing)Articulo (Responsive Web Desing)
Articulo (Responsive Web Desing)Giovanni Quagliano
 

Viewers also liked (6)

Responsive web design ppt
Responsive web design pptResponsive web design ppt
Responsive web design ppt
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Responsive Web Design, ventaja, inconvenientes y recomendaciones
Responsive Web Design, ventaja, inconvenientes y recomendacionesResponsive Web Design, ventaja, inconvenientes y recomendaciones
Responsive Web Design, ventaja, inconvenientes y recomendaciones
 
Articulo (Responsive Web Desing)
Articulo (Responsive Web Desing)Articulo (Responsive Web Desing)
Articulo (Responsive Web Desing)
 
Maquetación Web
Maquetación WebMaquetación Web
Maquetación Web
 
Responsive Webdesign
Responsive WebdesignResponsive Webdesign
Responsive Webdesign
 

Similar to Accessible Responsive Web Design

Reponsive web design (HTML5 + css3)
Reponsive web design (HTML5 + css3)Reponsive web design (HTML5 + css3)
Reponsive web design (HTML5 + css3)Sandip Jadhav
 
Responsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports DirectResponsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports DirectCantarus
 
Responsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, CantarusResponsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, CantarusInternet World
 
Mornington Peninsula responsive design
Mornington Peninsula responsive designMornington Peninsula responsive design
Mornington Peninsula responsive designSeamlessCMS
 
Does your website have these elements of responsive web design?
Does your website have these elements of responsive web design? Does your website have these elements of responsive web design?
Does your website have these elements of responsive web design? Experience Dynamics
 
Responsive Web Design | Website Designing
Responsive Web Design | Website DesigningResponsive Web Design | Website Designing
Responsive Web Design | Website DesigningMSA Technosoft
 
Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...
Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...
Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...UX Riga
 
2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...
2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...
2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...GIS in the Rockies
 
Webinar Recording "Best Practices in RWD - Responsive Web Design"
Webinar Recording "Best Practices in RWD - Responsive Web Design"Webinar Recording "Best Practices in RWD - Responsive Web Design"
Webinar Recording "Best Practices in RWD - Responsive Web Design"Sachin Katariya
 
digital marketing[1].pdf
digital marketing[1].pdfdigital marketing[1].pdf
digital marketing[1].pdfTECHCENTRAL3
 
01 01 - introduction to mobile application development
01  01 - introduction to mobile application development01  01 - introduction to mobile application development
01 01 - introduction to mobile application developmentSiva Kumar reddy Vasipally
 
Whitepaper: Responsive Test - A test framework to cover it all
Whitepaper: Responsive Test - A test framework to cover it allWhitepaper: Responsive Test - A test framework to cover it all
Whitepaper: Responsive Test - A test framework to cover it allIndium Software
 
Designing for mobile user experience
Designing for mobile user experienceDesigning for mobile user experience
Designing for mobile user experienceSameer Chavan
 
Intro to Responsive Web Design
Intro to Responsive Web DesignIntro to Responsive Web Design
Intro to Responsive Web Designmeghantaylor
 
Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...
Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...
Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...Sherry Budziak
 

Similar to Accessible Responsive Web Design (20)

Reponsive web design (HTML5 + css3)
Reponsive web design (HTML5 + css3)Reponsive web design (HTML5 + css3)
Reponsive web design (HTML5 + css3)
 
reponsive-web-design.pptx
reponsive-web-design.pptxreponsive-web-design.pptx
reponsive-web-design.pptx
 
reponsive-web-design.pptx
reponsive-web-design.pptxreponsive-web-design.pptx
reponsive-web-design.pptx
 
Responsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports DirectResponsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports Direct
 
Responsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, CantarusResponsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
 
Mornington Peninsula responsive design
Mornington Peninsula responsive designMornington Peninsula responsive design
Mornington Peninsula responsive design
 
Does your website have these elements of responsive web design?
Does your website have these elements of responsive web design? Does your website have these elements of responsive web design?
Does your website have these elements of responsive web design?
 
Responsive Web Design | Website Designing
Responsive Web Design | Website DesigningResponsive Web Design | Website Designing
Responsive Web Design | Website Designing
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...
Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...
Context-Aware and User-Centered Design: The Lost Battle Between Desktop and M...
 
2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...
2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...
2013 URISA Track, Deploying Web-GIS Apps on Multiple Platforms, Scott Staffor...
 
Webinar Recording "Best Practices in RWD - Responsive Web Design"
Webinar Recording "Best Practices in RWD - Responsive Web Design"Webinar Recording "Best Practices in RWD - Responsive Web Design"
Webinar Recording "Best Practices in RWD - Responsive Web Design"
 
Mobile web development
Mobile web development Mobile web development
Mobile web development
 
Designing for Everybody Workshop
Designing for Everybody WorkshopDesigning for Everybody Workshop
Designing for Everybody Workshop
 
digital marketing[1].pdf
digital marketing[1].pdfdigital marketing[1].pdf
digital marketing[1].pdf
 
01 01 - introduction to mobile application development
01  01 - introduction to mobile application development01  01 - introduction to mobile application development
01 01 - introduction to mobile application development
 
Whitepaper: Responsive Test - A test framework to cover it all
Whitepaper: Responsive Test - A test framework to cover it allWhitepaper: Responsive Test - A test framework to cover it all
Whitepaper: Responsive Test - A test framework to cover it all
 
Designing for mobile user experience
Designing for mobile user experienceDesigning for mobile user experience
Designing for mobile user experience
 
Intro to Responsive Web Design
Intro to Responsive Web DesignIntro to Responsive Web Design
Intro to Responsive Web Design
 
Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...
Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...
Is That a Mobile Template or Responsive Design? Identify Which Mobile Strateg...
 

More from Interactive Accessibility

More from Interactive Accessibility (9)

Many Devices, One Standard: Mobile Accessibility with WCAG 2.1
Many Devices, One Standard: Mobile Accessibility with WCAG 2.1Many Devices, One Standard: Mobile Accessibility with WCAG 2.1
Many Devices, One Standard: Mobile Accessibility with WCAG 2.1
 
Mitgating Legal Risk for Web and Mobile Accessibility
Mitgating Legal Risk for Web and Mobile AccessibilityMitgating Legal Risk for Web and Mobile Accessibility
Mitgating Legal Risk for Web and Mobile Accessibility
 
Achieving Proactive Accessibility Compliance
Achieving Proactive Accessibility ComplianceAchieving Proactive Accessibility Compliance
Achieving Proactive Accessibility Compliance
 
Mobile Accessibility in WCAG 2.1 and Beyond
Mobile Accessibility in WCAG 2.1 and BeyondMobile Accessibility in WCAG 2.1 and Beyond
Mobile Accessibility in WCAG 2.1 and Beyond
 
Challenges with VPATs
Challenges with VPATsChallenges with VPATs
Challenges with VPATs
 
eBook Accessibility Promises & Challenges
eBook Accessibility Promises & ChallengeseBook Accessibility Promises & Challenges
eBook Accessibility Promises & Challenges
 
2013 Accessibility Trends
2013 Accessibility Trends2013 Accessibility Trends
2013 Accessibility Trends
 
Introduction to WAI-ARIA
Introduction to WAI-ARIAIntroduction to WAI-ARIA
Introduction to WAI-ARIA
 
Usability Testing for People w/ Disabilities
Usability Testing for People w/ DisabilitiesUsability Testing for People w/ Disabilities
Usability Testing for People w/ Disabilities
 

Recently uploaded

Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxbalqisyamutia
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...gajnagarg
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Websitemark11275
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...nirzagarg
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahimamgadibrahim92
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfamanda2495
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxtrose8
 
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...gajnagarg
 
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best ServiceIndependent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Servicemeghakumariji156
 
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证ehyxf
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证eeanqy
 
Eye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docxEye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docxMdBokhtiyarHossainNi
 
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...Amil baba
 
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证eeanqy
 
How to Create a Productive Workspace Trends and Tips.pdf
How to Create a Productive Workspace Trends and Tips.pdfHow to Create a Productive Workspace Trends and Tips.pdf
How to Create a Productive Workspace Trends and Tips.pdfOffice Furniture Plus - Irving
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipNitya salvi
 
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样yhavx
 
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...drmarathore
 
Furniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxFurniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxNikhil Raut
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样awasv46j
 

Recently uploaded (20)

Minimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptxMinimalist Orange Portfolio by Slidesgo.pptx
Minimalist Orange Portfolio by Slidesgo.pptx
 
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Meerut [ 7014168258 ] Call Me For Genuine Models We...
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
 
Gamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad IbrahimGamestore case study UI UX by Amgad Ibrahim
Gamestore case study UI UX by Amgad Ibrahim
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptx
 
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Mysore [ 7014168258 ] Call Me For Genuine Models We...
 
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best ServiceIndependent Escorts Goregaon WhatsApp +91-9930687706, Best Service
Independent Escorts Goregaon WhatsApp +91-9930687706, Best Service
 
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
 
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
怎样办理伯明翰大学学院毕业证(Birmingham毕业证书)成绩单留信认证
 
Eye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docxEye-Catching Web Design Crafting User Interfaces .docx
Eye-Catching Web Design Crafting User Interfaces .docx
 
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
NO1 Top Pakistani Amil Baba Real Amil baba In Pakistan Najoomi Baba in Pakist...
 
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
怎样办理巴斯大学毕业证(Bath毕业证书)成绩单留信认证
 
How to Create a Productive Workspace Trends and Tips.pdf
How to Create a Productive Workspace Trends and Tips.pdfHow to Create a Productive Workspace Trends and Tips.pdf
How to Create a Productive Workspace Trends and Tips.pdf
 
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for FriendshipRaebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
Raebareli Girl Whatsapp Number 📞 8617370543 | Girls Number for Friendship
 
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
 
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
Abortion pills in Kuwait 🚚+966505195917 but home delivery available in Kuwait...
 
Furniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptxFurniture & Joinery Details_Designs.pptx
Furniture & Joinery Details_Designs.pptx
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
 

Accessible Responsive Web Design

  • 1. Web Accessibility RESPONSIVE WEB DESIGN November 7, 2013 11/8/2013 © 2013 Interactive Accessibility 1
  • 2. The Accessibility Experts ™ Kathleen Wahlbin Email: KathyW@ia11y.com Phone: 978-443-0798 http://www.interactiveaccessibility.com 11/8/2013 © 2013 Interactive Accessibility 2
  • 3. Mobile, Tablets, Laptops, & Desktops RESPONSIVE DESIGN 11/8/2013 © 2013 Interactive Accessibility 3
  • 4. What is the Problem? • Websites are not optimized for the many different devices available – Sizes – Capabilities – Interaction methods • User experience less than ideal on many sites 11/8/2013 © 2013 Interactive Accessibility 4
  • 5. Not Just a Problem on Mobile… • The lines are blurring… 11/8/2013 © 2013 Interactive Accessibility 5
  • 6. The Old Reality… • • • • • Big screen Fast internet connection Powerful processor Efficient input (keyboard/mouse) Desk with chair 11/8/2013 © 2013 Interactive Accessibility 6
  • 7. The New Reality…. One handed Outside light Aging Eyes Busy Eyes and Hands Noisy, public spaces Fat fingers 11/8/2013 © 2013 Interactive Accessibility 7
  • 8. Majority of Interactions are Digital Source: http://www.google.com/think/research-studies/thenew-multi-screen-world-study.html 11/8/2013 © 2013 Interactive Accessibility 8
  • 9. History of Screen Resolution • • • • Desktop resolution has increased More people use high resolution Many resolutions available And of course, mobile devices 11/8/2013 © 2013 Interactive Accessibility Sources: W3C Schools, nngroup.com 9
  • 10. Mobile Screen Resolution • iPhone 1136 x 640 640 x 960 320 x 480 – 1st / 2nd – 3rd – Mini 1024 x 768 2048 x 1536 1024 x 768 – Phones – Tablets 320 or 360 wide (typically) 800 wide • iPad: • Android Sources: Mobilemoxie.com Mediag.com Onbile.com Developer.android.com 11/8/2013 Android – 5 – 4S – 3GS © 2013 Interactive Accessibility 10
  • 11. We Need to Rethinking the Web • Interaction models are changing • Dependent on many factors – Browsers – Device capabilities – Situation • Screen resolution and size 11/8/2013 © 2013 Interactive Accessibility 11
  • 12. What is Responsive Web Design (RWD)? 11/8/2013 © 2013 Interactive Accessibility 12
  • 13. What is RWD? • Technique of building a website or application for all devices • One code base optimized for the medium and viewport size • It’s about adopting a more flexible, device-agnostic approach Same set of code 11/8/2013 © 2013 Interactive Accessibility 13
  • 14. Responsive Design – 1024px Desktop 11/8/2013 © 2013 Interactive Accessibility 14
  • 15. Responsive Design - 768px Tablet 11/8/2013 © 2013 Interactive Accessibility 15
  • 16. Responsive Design – 360px Mobile 11/8/2013 © 2013 Interactive Accessibility 16
  • 17. What is the Difference Between RWD & Mobile Website? 11/8/2013 © 2013 Interactive Accessibility 17
  • 18. Mobile Site vs. RWD • Mobile website is: – – – – – Hard coded for one or a few screen resolutions Coded more simply Not dynamically responsive to changing resolutions Typically not appealing on larger screens / desktops Separate from the desktop website – two code bases • Whereas RWD is: – One code base; one website – Not hard-coded – responds to changing resolutions – More dynamic code – looks at device resolution to determine space available for laying out content in a grid – Adaptive: may show elements, resize text/images, reflow elements as resolution changes – Looks fine on desktop 11/8/2013 © 2013 Interactive Accessibility 18
  • 19. How is RWD Implemented? • Fluid, flexible layout – Uses relative sizing of grids, not fixed – Based on columns that can be reflowed – Allows grid layout to adjust to viewport size • Media queries – Target media types and media features – Tests for max/min width & height on viewport and device, device orientation, aspect radio, resolution • Responsive images – Relative widths (CSS) or dynamic replacement (JS) 11/8/2013 © 2013 Interactive Accessibility 19
  • 20. Old Way vs. New Way • CSS 2.1 – Media Types <link href="screen.css“ … media="screen“> • CSS 3 – Media Queries @media screen and (max-width: 30em) { // mobile styles here } 11/8/2013 © 2013 Interactive Accessibility 20
  • 21. Browser Compatibility • RWD works in the following browsers – – – – – IE 9+ Opera 9.5+ Safari 3+ Firefox 3.5+ Chrome • Can use other browsers with the use of JavaScript coding 11/8/2013 © 2013 Interactive Accessibility 21
  • 22. Responsive Sites 11/8/2013 © 2013 Interactive Accessibility 22
  • 23. Is Responsive Design Accessible? RWD CHALLENGES & OPPORTUNITIES 11/8/2013 © 2013 Interactive Accessibility 23
  • 24. Is RWD Good for Accessibility? 11/8/2013 © 2013 Interactive Accessibility 24
  • 25. Benefits of RWD • Automatically adjust to user’s device • Inherent inclination to follow web standards • Mobile first + progressive enhancement – Designing first for mobile focuses on key features and accessibility – As screen sizes / resolution increase, add features, content, and interaction modes • Sites can also remember accessibility preferences – Text size – Spacing – Video options, etc. 11/8/2013 © 2013 Interactive Accessibility 25
  • 26. Is RWD Good for People with Disabilities? 11/8/2013 © 2013 Interactive Accessibility 26
  • 27. Low Vision Users • Users with low vision may – Have a lower screen resolution – Magnify the screen using browser settings • Benefits – Building experiences mobile first – Images can be optimized – Magnified screen adjusts to smaller viewport size (fluid layout) • Some elements may be removed • Elements are moved below (reflowed) to minimize / eliminate scrolling • Adjusts within browser • Challenges – Permanence of place – as resolutions change, elements may move to an unfamiliar place – Sometimes text will be cut off in magnified page on desktop browsers 11/8/2013 © 2013 Interactive Accessibility 27
  • 28. Blind Users • Users who are blind will – Use a screen reader – Rely partially on memory and mental map of site structure for navigation • Benefits – Having less content on a page can be easier to understand and navigate • Challenges – Changing organization and navigation is harder to use – Reading order may not match visual order 11/8/2013 © 2013 Interactive Accessibility 28
  • 29. Mobility-Impaired Users • Users with mobility impairments may – Use alternative input devices – switches, voice • Benefits – Short pages and streamlined navigation easier to use • Challenges – Touch interaction can be difficult 11/8/2013 © 2013 Interactive Accessibility 29
  • 30. 5 Practical Tips TECHNIQUES FOR RESPONSIVE DESIGN 11/8/2013 © 2013 Interactive Accessibility 30
  • 31. Mobile First • Build for less-capable devices / browsers first • Enhance for more advanced platforms/browsers • Design for smallest screen resolution Source: http://www.abookapart.com/products/mobile-first 11/8/2013 © 2013 Interactive Accessibility 31
  • 32. Reduce Cognitive & Visual Load • • • • • Layout Images Line and letter spacing (leading / kerning) Readable typefaces Responsive typography 11/8/2013 © 2013 Interactive Accessibility 32
  • 33. Use Images that Work Across Devices • Challenges: – Image clarity, designing images to work on all devices and screen resolutions – Download image size • Solutions: – – – – 11/8/2013 Image optimization Icon fonts New HTML picture element (www.responsiveimages.org) Image replacement with polyfills or media queries © 2013 Interactive Accessibility 33
  • 34. Follow Web Standards • No more platform hacks • Custom controls minimized • Mouse-only functions eliminated 11/8/2013 © 2013 Interactive Accessibility 34
  • 35. Design for Different Input Methods • Challenges for all users – Touch zone size – Fat finger syndrome – hard to select right icon • Different input devices – Switch device – One handed – Motor control 11/8/2013 © 2013 Interactive Accessibility 35
  • 36. How do you hold your device? 11/8/2013 © 2013 Interactive Accessibility 36
  • 37. Touch Zones • • • • Position affects areas reached by thumb and fingers Landscape vs. portrait position affects it too Typical placement of fingers is a factor for RWD Consider touch zones that are easy to reach 11/8/2013 © 2013 Interactive Accessibility 37
  • 38. What are the Easy Touch Zones? Source: http://www.lukew.com/ff/entry.asp?1649 11/8/2013 © 2013 Interactive Accessibility 38
  • 39. Touch Interface • Different interpretations of optimal target size – Apple: – Microsoft: – Nokia: 44 px 26-34px 28 px / 1 cm x 1 cm • MIT Touch Lab study – Average index finger width is 1.6 – 2 cm = 45 – 57 px – Thumbs: 2.5 cm = 72 px 11/8/2013 © 2013 Interactive Accessibility 39
  • 40. Design Touch Targets • A consideration as RWD resizes content, icons, spacing of grouped items, and other targets • Design large touch targets based on density-independent pixels (dp) – WARNING: pixel density changes per handset – Good balance between information density and targetability of UI Elements – Spacing between UI elements should be 8 dp Reference: http://developer.android.com/design/style/metrics-grids.html 11/8/2013 © 2013 Interactive Accessibility 40
  • 41. Pros & Cons of RWD • Pros – Only have to maintain single site – Don’t have to deal with mobile-specific URLs – Address a wide variety of devices • Cons – Additional time needed to for design – Devices constantly changing – Designing the optimal experience / usability for all devices take more time – Have to consider performance across all devices 11/8/2013 © 2013 Interactive Accessibility 41
  • 42. Is RWD Good for Accessibility? • YES!!! – Better usability – Generally works better with assistive technology since code is written to standards – Optimize experience across devices and screen size 11/8/2013 © 2013 Interactive Accessibility 42
  • 44. Kathy Wahlbin Email: KathyW@ia11y.com Phone: 978-443-0798 http://www.interactiveaccessibility.com @wahlbin Thank you!