SlideShare a Scribd company logo
@LEONIEWATSON HTTP://LJWATSON.CO.UK@LEONIEWATSON HTTP://LJWATSON.CO.UK
CREATING ACCESSIBLE
INTERFACES
EVERYONE WANTS TO USE
Léonie Watson
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DESIGN LIKE BANKSY
Read the rule book, then rip it up and create
something that challenges the accepted wisdom
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY STIFLES INNOVATION
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY KILLS CREATIVITY
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY IS DIFFICULT
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY IS IRRELEVANT
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DESIGN LIKE DA VINCI
Be curious about everything, and never stop
questioning how you can make things better
@LEONIEWATSON HTTP://LJWATSON.CO.UK
PERFECT IS THE ENEMY OF GOOD
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DON’T CHUCK IT OVER THE WALL
@LEONIEWATSON HTTP://LJWATSON.CO.UK
INTERACTION
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DESIGN
@LEONIEWATSON HTTP://LJWATSON.CO.UK
CHOICE
@LEONIEWATSON HTTP://LJWATSON.CO.UK
COMMUNICATE
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DESIGN LIKE CHANEL
Strive for beauty and elegance, but understand that
those things will not be the same for everybody.
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ONCE MORE FROM THE TOP
@LEONIEWATSON HTTP://LJWATSON.CO.UK
JUMPING AROUND
@LEONIEWATSON HTTP://LJWATSON.CO.UK
LANDMARKS AHOY
@LEONIEWATSON HTTP://LJWATSON.CO.UK
MODUS OPERANDI
something
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY MECHANICS
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DOM TREE
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY TREE
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ROLE
<input type="checkbox" id="drink" checked>
<label for="drink">Tequila</label>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
STATE
<input type="checkbox" id="drink" checked>
<label for="drink">Tequila</label>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
PROPERTIES
<input type="checkbox" id="drink" checked>
<label for="drink">Tequila</label>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ACCESSIBILITY APIS
MSAA/UIAutmoation Windows
IAccessible2 Windows Linux
AT-SPI Linux
NSAccessibility OSX
UIAccessibility iOS
Accessibility Framework Android
@LEONIEWATSON HTTP://LJWATSON.CO.UK
DESIGN LIKE BRUNEL
Know that planning is important, but that
imagination makes the extraordinary possible
@LEONIEWATSON HTTP://LJWATSON.CO.UK
SKELETON HTML
<span id="button">Tequila <span
id="icon"></span></span>
<div id="content">Makes me happy...</div>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
USING A MOUSE
@LEONIEWATSON HTTP://LJWATSON.CO.UK
USING A KEYBOARD
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD ROLE
<span id="button" role="button”>
Tequila <span id="icon"></span></span>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD TABINDEX
<span id="button" role="button" tabindex="0”>
Tequila <span id="icon"></span></span>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD FOCUS VISUALS
[role="button"]:hover, [role="button"]:focus {
background-color: #333;
color: #fff;
text-shadow: 0 -1px 0 #444;
box-shadow: 0 1px 0 #666;
}
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD EVENT LISTENERS
document.getElementById("button").addEventListe
ner("click", toggleDisclosure);
document.getElementById("button").addEventListe
ner("keydown", toggleDisclosure);
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD KEYBOARD INTERACTION
function toggleDisclosure(event)
{
var type = event.type;
if (type === "keydown" && (event.keyCode !==
13 && event.keyCode !== 32))
{
return true
}
event.preventDefault();
}
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD ARIA-EXPANDED
<span id="button" role="button"
tabindex="0" aria-expanded="false”>
Tequila <span id="icon"></span></span>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD STATE VISUALS
[role="button"][aria-expanded="false"] .icon:after {
content: ' ›';
}
[role="button"][aria-expanded="true"] .icon:after {
content: ' ×';
}
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD ARIA-CONTROLS
<span id="button" role="button" tabindex="0"
aria-expanded="false" aria-controls="content">
Tequila <span id="icon"></span></span>
<div id="content">Makes me happy...</div>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD ARIA-HIDDEN
<span id="button" role="button" tabindex="0"
aria-expanded="false" aria-controls="content">
Tequila <span id="icon" aria-hidden="true">
</span></span>
<div id="content" aria-hidden="true">
Makes me happy</div>
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD MORE STATE VISUALS
div[aria-hidden="true”] {
display: none;
}
div[aria-hidden="false”] {
display: block;
border: 1px #000 solid;
padding: 1em;
background: #555;
color: #FFF;
}
@LEONIEWATSON HTTP://LJWATSON.CO.UK
ADD FUNCTIONALITY
function toggleDisclosure(event)
{
var button = document.getElementById("button");
var content = document.getElementById("content");
if(content.getAttribute("aria-hidden") == "true")
{
content.setAttribute("aria-hidden", "false");
button.setAttribute("aria-expanded", "true");
}
else
{
content.setAttribute("aria-hidden", "true");
button.setAttribute("aria-expanded", "false");
}
}
@LEONIEWATSON HTTP://LJWATSON.CO.UK
USING A SCREEN READER
@LEONIEWATSON HTTP://LJWATSON.CO.UK@LEONIEWATSON HTTP://LJWATSON.CO.UK
Léonie Watson @leoniewatson

More Related Content

PDF
IFTTT: The Powerful way to AUTOMATE your Social Life
PDF
EVERNOTE: Collect it all in ONE PLACE
PPTX
ZOMDir tour
PDF
Riann salandanan howtouse_evernote -
PDF
Riann salandanan howtouse_buffer
PDF
Riann salandanan howtouse_hootsuite
PDF
TRELLO: A Powerful Engine for Project Management
PDF
Riann salandanan howtouse_ifttt
IFTTT: The Powerful way to AUTOMATE your Social Life
EVERNOTE: Collect it all in ONE PLACE
ZOMDir tour
Riann salandanan howtouse_evernote -
Riann salandanan howtouse_buffer
Riann salandanan howtouse_hootsuite
TRELLO: A Powerful Engine for Project Management
Riann salandanan howtouse_ifttt

What's hot (20)

PDF
end of google and firefox
PDF
Riann salandanan howtouse_dropbox
PDF
Get More Links to Your Site With the Skyscraper Technique
PDF
Riann salandanan howtouse_stayfocusd
PDF
How to Use IFTTT for Social Media Automation_Social Media Wizard_RichardBasilio
PDF
Riann salandanan howtouse_pinterest
PDF
Riann salandanan howtouse_toggl
PDF
Wordpress: Make Your Site Impressively Beautiful
PDF
Zapier: A Big thing for your Business
PPT
How to use Wordpress
PPTX
MAILCHIMP: A tool for Newbies and Expert Email Marketers
PDF
Riann salandanan howtouse_asana
PDF
PicMonkey: The Alternative for Photoshop
PPT
Day One - Setting Up Your Blog
PDF
Paypal: Receive Payment for a Job Well Done
PPT
Introduction To The OpenSocial API
PPT
How to use IFTTT.
PDF
Postcron: Automate and Plan Posts Ahead
PDF
Hootsuite basic step by step tutorial
PPT
Master Gardener Volunteer Management System Instructions
end of google and firefox
Riann salandanan howtouse_dropbox
Get More Links to Your Site With the Skyscraper Technique
Riann salandanan howtouse_stayfocusd
How to Use IFTTT for Social Media Automation_Social Media Wizard_RichardBasilio
Riann salandanan howtouse_pinterest
Riann salandanan howtouse_toggl
Wordpress: Make Your Site Impressively Beautiful
Zapier: A Big thing for your Business
How to use Wordpress
MAILCHIMP: A tool for Newbies and Expert Email Marketers
Riann salandanan howtouse_asana
PicMonkey: The Alternative for Photoshop
Day One - Setting Up Your Blog
Paypal: Receive Payment for a Job Well Done
Introduction To The OpenSocial API
How to use IFTTT.
Postcron: Automate and Plan Posts Ahead
Hootsuite basic step by step tutorial
Master Gardener Volunteer Management System Instructions
Ad

Similar to Design Like You Give a Damn: Creating Accessible Interfaces that Everyone Wants to Use (Leonie Watson) (16)

PDF
Beginners Guide to Accessibility
PPTX
Accessibility-Oriented Paradigm for Designing UI
PPTX
Web accessibility
PDF
a11yTO - Web Accessibility for Developers
PPTX
Introduction to accessibility
PDF
Making Web Accessibility Sexy
PPTX
Beginners Guide To Web Accessibility - WordCamp UK July 2013
PPT
Mr. Jonathan Hassell's presentation at QITCOM 2011
PDF
Accessibility - A feature you can build
PPTX
Module 2-web-a11y-steve lee
PDF
Quick Web Accessibility - Sensory Therapy Gardens Manual
PDF
How to create accessible websites - WordCamp Boston
PPTX
Scope website - how to make an accessible website
PPT
Web Standards and Accessibility
PPTX
Unit 28 Week 13
Beginners Guide to Accessibility
Accessibility-Oriented Paradigm for Designing UI
Web accessibility
a11yTO - Web Accessibility for Developers
Introduction to accessibility
Making Web Accessibility Sexy
Beginners Guide To Web Accessibility - WordCamp UK July 2013
Mr. Jonathan Hassell's presentation at QITCOM 2011
Accessibility - A feature you can build
Module 2-web-a11y-steve lee
Quick Web Accessibility - Sensory Therapy Gardens Manual
How to create accessible websites - WordCamp Boston
Scope website - how to make an accessible website
Web Standards and Accessibility
Unit 28 Week 13
Ad

More from Future Insights (20)

PDF
The Human Body in the IoT. Tim Cannon + Ryan O'Shea
PDF
Pretty pictures - Brandon Satrom
PDF
Putting real time into practice - Saul Diez-Guerra
PDF
Surviving the enterprise storm - @RianVDM
PDF
Exploring Open Date with BigQuery: Jenny Tong
PDF
A Universal Theory of Everything, Christopher Murphy
PDF
Horizon Interactive Awards, Mike Sauce & Jeff Jahn
PDF
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
PDF
Front End Development Transformation at Scale, Damon Deaner
PDF
Structuring Data from Unstructured Things. Sean Lorenz
PDF
Cinematic UX, Brad Weaver
PDF
The Future is Modular, Jonathan Snook
PDF
Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
PDF
Accessibility Is More Than What Lies In The Code, Jennison Asuncion
PDF
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
PDF
Designing for Dyslexia, Andrew Zusman
PDF
Beyond Measure, Erika Hall
PDF
Real Artists Ship, Haraldur Thorleifsson
PDF
Ok Computer. Peter Gasston
PDF
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya
The Human Body in the IoT. Tim Cannon + Ryan O'Shea
Pretty pictures - Brandon Satrom
Putting real time into practice - Saul Diez-Guerra
Surviving the enterprise storm - @RianVDM
Exploring Open Date with BigQuery: Jenny Tong
A Universal Theory of Everything, Christopher Murphy
Horizon Interactive Awards, Mike Sauce & Jeff Jahn
Reading Your Users’ Minds: Empiricism, Design, and Human Behavior, Shane F. B...
Front End Development Transformation at Scale, Damon Deaner
Structuring Data from Unstructured Things. Sean Lorenz
Cinematic UX, Brad Weaver
The Future is Modular, Jonathan Snook
Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Accessibility Is More Than What Lies In The Code, Jennison Asuncion
Sunny with a Chance of Innovation: A How-To for Product Managers and Designer...
Designing for Dyslexia, Andrew Zusman
Beyond Measure, Erika Hall
Real Artists Ship, Haraldur Thorleifsson
Ok Computer. Peter Gasston
Digital Manuscripts Toolkit, using IIIF and JavaScript. Monica Messaggi Kaya

Recently uploaded (20)

PDF
BRANDBOOK-Presidential Award Scheme-Kenya-2023
PPTX
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
PPT
EGWHermeneuticsffgggggggggggggggggggggggggggggggg.ppt
PPTX
Entrepreneur intro, origin, process, method
PDF
Integrated-2D-and-3D-Animation-Bridging-Dimensions-for-Impactful-Storytelling...
PPTX
AD Bungalow Case studies Sem 2.pptxvwewev
PPTX
Media And Information Literacy for Grade 12
PDF
YOW2022-BNE-MinimalViableArchitecture.pdf
PPTX
HPE Aruba-master-icon-library_052722.pptx
PDF
Key Trends in Website Development 2025 | B3AITS - Bow & 3 Arrows IT Solutions
PDF
Design Thinking - Module 1 - Introduction To Design Thinking - Dr. Rohan Dasg...
PDF
Chalkpiece Annual Report from 2019 To 2025
PPT
pump pump is a mechanism that is used to transfer a liquid from one place to ...
PPTX
CLASS_11_BUSINESS_STUDIES_PPT_CHAPTER_1_Business_Trade_Commerce.pptx
PPTX
DOC-20250430-WA0014._20250714_235747_0000.pptx
PDF
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
PPT
Machine printing techniques and plangi dyeing
PPTX
An introduction to AI in research and reference management
DOCX
actividad 20% informatica microsoft project
PDF
Phone away, tabs closed: No multitasking
BRANDBOOK-Presidential Award Scheme-Kenya-2023
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
EGWHermeneuticsffgggggggggggggggggggggggggggggggg.ppt
Entrepreneur intro, origin, process, method
Integrated-2D-and-3D-Animation-Bridging-Dimensions-for-Impactful-Storytelling...
AD Bungalow Case studies Sem 2.pptxvwewev
Media And Information Literacy for Grade 12
YOW2022-BNE-MinimalViableArchitecture.pdf
HPE Aruba-master-icon-library_052722.pptx
Key Trends in Website Development 2025 | B3AITS - Bow & 3 Arrows IT Solutions
Design Thinking - Module 1 - Introduction To Design Thinking - Dr. Rohan Dasg...
Chalkpiece Annual Report from 2019 To 2025
pump pump is a mechanism that is used to transfer a liquid from one place to ...
CLASS_11_BUSINESS_STUDIES_PPT_CHAPTER_1_Business_Trade_Commerce.pptx
DOC-20250430-WA0014._20250714_235747_0000.pptx
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
Machine printing techniques and plangi dyeing
An introduction to AI in research and reference management
actividad 20% informatica microsoft project
Phone away, tabs closed: No multitasking

Design Like You Give a Damn: Creating Accessible Interfaces that Everyone Wants to Use (Leonie Watson)