What Designers Need to Know about Accessibility (A11y)

Slides:



Advertisements
Similar presentations
Creating dynamic and accessible content in Drupal 7 using WAI-ARIA Sarah Pulis Web Accessibility Evangelist DruaplCon | Content Authoring |
Advertisements

WAHEP Website Check-up A Look at the Project Midway Website Evaluations.
Basic Accessible PDF Document Training Adobe Acrobat Professional 11.
Accessible PDF Creation using Adobe Acrobat Professional 11.
Introduction to Web Accessibility. What is Web Accessibility Web accessibility means that people with disabilities can use the Web Disabilities including.
1 Accessibility CSSE 376, Software Quality Assurance Rose-Hulman Institute of Technology April 16, 2007.
Chapter 1 Getting Started With Dreamweaver. Explore the Dreamweaver Workspace The Dreamweaver workspace is where you can find all the tools to create.
Dhananjay Bhole, Coordinator, Accessibility Research Group, Department of Education and Extension, University of Pune.
Designing for Disabled Users.  p?vid=35 p?vid=35.
1 Section 508 Evaluation of EAST (A USPTO network-based proprietary application) Attachment C.
Scripted, Tab Accessible Tree Control Hierarchical view of data via tree control. Keyboard Navigation from initially closed tree to view above with focus.
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
Accessibility for Rich Internet Applications: Colin Clark, Fluid Project Technical Lead, Adaptive Technology Resource Centre Techniques & Toolkits.
An Introduction to WAI-ARIA Dan Jackson Web Team Leader City University London.
Alternative Views of the Web Jon Gunderson, Ph.D. Division of Rehabilitation-Education Services University of Illinois at Urbana/Champaign.
Understanding WCAG Elizabeth J. Pyatt, Ph.D. Information Technology Services.
ARIA + HTML5 Steve Faulkner & Hans Hillen The Paciello Group.
Web-designWeb-design. Web design What is it? Web-design features Before…
Website Development with Dreamweaver
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 6: Links.
How to evaluate technology for accessibility Terrill Thompson Technology Accessibility Specialist University of
Functional Accessibility Evaluation of Web 2.0 Applications Testing Jon Gunderson, Ph.D University of Illinois.
WEB ACCESSIBILITY. WHAT IS IT? Web accessibility means that people with disabilities can use the Web. Web accessibility encompasses all disabilities that.
+ A11y assessment Lisa Liskovoi. + WCAG POUR some accessibility sugar on me Perceivable – Can I see it? Hear it? Feel it? Operable – Can I scroll it?
Dive into Mobile Guidelines for Testing Native, Hybrid, and Web Apps Susan Hewitt, Accessibility Consultant, Deque Systems Jeanine Lineback, Accessibility.
Aria Roles Informing assistive technology. What are Aria Roles A way of conveying the role or state of content or functionality. Accessible Rich Internet.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
Technical Communication A Practical Approach Chapter 14: Web Pages and Writing for the Web William Sanborn Pfeiffer Kaye Adkins.
Week 8.  Form controls  Accessibility with ARIA.
Section 508 Refresh WCAG 2.0 A and AA Information & Comparison CB Averitt – Deque Systems.
Accessible PDF Creation using Adobe Acrobat Professional 11.
The Disability Resource Center Web Accessibility Assessment for Everyone.
Sitecore Basic Training Drexel’s full-featured web content management system (CMS) Web Support Information Resources & Technology (IRT)
Sitecore Basic Training Drexel’s full-featured web content management system (CMS) Web Support Information Resources & Technology (IRT)
COMP 143 Web Development with Adobe Dreamweaver CC.
Sitecore Basic Training Content Management System (CMS) University Communications Web Services
 Accessibility & Information Architecture Presented by Liz Molleur INF385E April 5 th, 2009.
Accessibility is not boring or difficult. It’s the right thing to do. Benjy Stanton.
Web Accessibility. Why accessibility? "The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."
Athletic Rivalries and Web Accessibility
Testing Native Mobile Apps
2.2 Internet Basics.
Testing for Accessibility with Common Screen Readers
How to Improve Your #A11y Testing
WashU Web Accessibility Users Group
Web-based structures, links and testing
Guidance for 3rd party content providers
Making the Web Accessible to Impaired Users
Chapter 7 Absolute/relative hyperlinks Frag id 3-column site
Web Development & Design Foundations with HTML5 8th Edition
Assistive Software Used to Evaluate EAST
Web-design.
MUG Tuesday, May 31, 2016.
Sharon Trerise & Kara Patten Graphics from webaim.org
Introduction to Web Accessibility
Design considerations
Web Accessibility Testing 101: A Checklist for Beginners
Web Accessibility Allison Kidd, Accessibility Specialist
Fixed Positioning.
Unit 14 Website Design HND in Computing and Systems Development
Chap 7 Abs/rel hyperlinks Frag id Sprites (Student presentation)
International University of Japan
Chap 7 Abs/rel hyperlinks Frag id Sprites (Student presentation)
Web Development & Design Foundations with H T M L 5
Chapter 7 Absolute/relative hyperlinks Frag id 3-column site
Web Standards and Accessible Design.
Demystifying Web Content Accessibility Guidelines
Название доклада.
WebAIM Screen Reader Survey Results
Presentation transcript:

What Designers Need to Know about Accessibility (A11y) Jon Gunderson, Ph.D. Disability Resources and Education Services University Of Illinois – Urbana/Champaign 2018 ConveyUX Conference, Seattle, WA

Designers Are Critical for A11y Remediation (Dominate) Build the product add accessibility at the end or as users identify issues. Automated testing (Very Popular) Automated tools during the development process use to identify accessibility issues to fix. Some services advertise they don’t need to do anything theirservice will make your product accessible. Design (Rare) Understanding the needs and interaction of people with disabilities (PWD) using assistive technologies or OS accessibility features.

First Steps in A11y Design Accessibility basics Role Name Description ARIA Landmarks and HTML Headings Keyboard interaction model Keyboard focus styling

Role, Name and Description Type of user interface element Name Label for the user interface element (e.g. purpose or action) Description Additional information about a user interface element (e.g. instructions or context for name)

Example Roles Role HTML Elements heading H1, h2, h3, h4, h5 and h6 list ul, ol and dl listitem li image img and figure link a and area textbox Input[type=text] button button, input[type=button], input[type=submit], input[type=reset]

Name and Description Name Text content label element aria-label or aria-labelledby attribute title attribute Description aria-describedby attribute

Good Examples Screen readers first read role, then the name and then, if defined, the description. Markup Screen Reader What’s Happening <a href=“..”>ConveyUX Conference</a> link ConveyUX conference Role is “link” Name from text content <button title=“Like Sound Transit’s Page on Facebook”></button> button like sound transit’s page on facebook Role is “button” Name from title attribute < a href=“..” title=” Tacoma Link light rail”>Learn More</a> link learn more Tacoma link light rail Role is ”link” Name from text Description from title attribute

Bad Examples Markup Screen Reader (SR) Accessibility Issue <button title=“Like Sound Transit’s Page on Facebook” aria-label=“=“Like Sound Transit’s Page on Facebook”></button> button like sound transit’s page on facebook button like sound transit’s page on facebook Problem is that SR repeats the name of the button, this is redundant and confusing <a href=“..” title=“Link to Twitter”></a> link link to twitter Problem is that SR says “link” twice, this is redundant and confusing <a href=“..” aria-label=“Update User Profile” title=“Update User Profile”>jongund</a> link update user profile update user profile Problem for SR since ”jongund” is not part of name and the defined name is read twice by the SR Problem for voice recognition users because visible label does not match the accessible name

Landmarks and Headings Identify functional groupings of page content Screen readers can navigate and list landmarks ARIA Authoring Practices for Landmarks (example) Headings Labeling landmarks (H1 and H2) Labeling the sections and sub-sections within a document (H1-H6)

Landmarks Landmark Frequency of Usage Usage banner None or one The common content typically found at the top of each page in a website. complementary As many as needed, often none Identifies unique page content not part of the main landmark. contentinfo The common content typically found at the bottom of each page in a website. main Typically one Identify the main content area or areas of a web page or application navigation As many as needed Identify website navigational links region region role is only considered a landmark when it has an accessible name. Used to identify sub-sections of other landmarks search Typically one or none Identify website search features

Screen Reader Commands OSX Voice Over Command+F5: Starts or stops Voice Over Cotrol+Option+Command+H: Next heading Control+Option+U: Accessibility Rotor includes Landmark and Heading Lists Windows NVDA D/Shift+D: Next/previous Landmark H/Shift+H: Next/previous Heading Insert+F7: List of elements including Headings and Landmarks Windows JAWS Q/R: Next/previous Landmark Insert+Control+R: List of Landmarks (e.g. regions) Insert+F6: List of Headings

Landmark and Heading Examples Accessibility Bookmarklets for visualizing Landmarks and Headings

Good Use of Headings

Under Use of Heading Structure

Over Use Headings

Over Use of Headings

No Use of Headings

Good Use Of Landmarks

Under Use of landmarks

Keyboard Interaction Model All functionalities must be accessible through keyboard alone Interactive elements must have keyboard support Basic tab navigation is often inefficient or incomplete ARIA widget roles describe advanced keyboard interaction ARIA Authoring Practices provide design patterns for roles and keyboard interaction

Menu Role Example ARIA Roles describe keyboard interaction, not user interface design features Tab key moves focus to the selected menu item When menu has focus, tab key moves focus out of the menu (e.g not to menu items) Cursor keys to move between items in a menu Left and up key previous item Right and down to next item Home to move to first item End to move to last item ARIA Menu Button Design Pattern and Examples

Keyboard Focus Styling The first accessibility feature I check a web page Many people interpret WCAG requirements to only “not interfere” with default focus styling of browsers Reset stylesheets often override and disable default focus styling of browsers Designers must start actively style keyboard focus as part of the design to make it salient to all users

Keyboard Focus Example Focus should always be visible (e.g. no off-screen focusable elements) Focus should include a border for links and form controls Focus styling must meet color contrast requirements of WCAG Focus should be easy to see as you navigation with the TAB key Links in the main content should be underlined (e.g. important for people with low vision) Inaccessible test page Accessible test page

Accessibility Can As Your Friend 3.2.3 Consistent Navigation: Navigational mechanisms that are repeated on multiple Web pages within a set of Web pages occur in the same relative order each time they are repeated, unless a change is initiated by the user. (Level AA) 3.2.4 Consistent Identification: Components that have the same functionality within a set of Web pages are identified consistently. (Level AA)

W3C Resources Web Content Accessibility Guidelines 2.0 Accessible Rich Internet Application (ARIA) 1.1 ARIA Authoring Practices Using ARIA HTML5 Specification

Screen Reader Resources OSX Voice (Safari and Chrome) Penn State: Voice Over for OS X Apple Voice Over Commands Windows NVDA (Open Source) Penn State: NVDA Keyboard Commands Webaim: NVDA Keyboard Commands NVDA: Web Browse Keyboard Commands Windows Jaws Penn State: JAWS commands for web WebAIM: JAWS commands for web Freedom Scientific: JAWS commands for web

Open Source Tools The following tools support rules for accessible design requirements outlined in this presentation. Functional Accessibility Evaluator AInspector Sidebar for Firefox (ESR 52 Version) Accessibility Bookmarklets

Additional Training and Resources Training from Illinois Information Accessibility Design and Policy Certificate Accessibility Badges Other Resources W3C Web Accessibility Initiative WebAIM Knowability

Questions AND DISCUSSION? Contact Jon Gunderson at jongund@illinois.edu