Dmitry Pashkevich, Nov 2018
It's spelled "accessibility," not "disability"
by Scott Davis (ThoughtWorks)
[original slides]
Most content is borrowed from that talk and the resources it links to
1. The quality of being able to be reached or entered.
1.1 The quality of being easy to obtain or use.
1.2 The quality of being easily understood or appreciated.
1.3 The quality of being easily reached, entered, or used by people who have a disability.
... the inclusive practice of ensuring there are no barriers that prevent interaction with, or access to websites, by people with disabilities.
When sites are correctly designed, developed and edited, generally all users have equal access to information and functionality.
of the world's population have some sort of disability
Data: statcounter
Data: statcounter
Data: Speakt
of the world's population may have trouble using your app
That affect use of websites
Visual
Blindness, low vision and colour-blindness
Auditory
Profoundly deaf and hard of hearing
Motor
The inability to use a mouse, slow response time, limited fine motor control
Deafness:
moderate
moderately severe
severe
profound
totally deaf
Vision/brain conditions
astigmatism | color blindness | akinetopsia (motion blindness) |
scotopic visual sensitivity (visual stress related to light) | visual agnosia (impaired recognition or identification of objects) |
vestibular disorders (motion sickness) |
:fastestparrot:
While we might have medical and government-recognised definitions that tell us what makes a disability, day-to-day life is not so straightforward. People experience varying degrees of different conditions, and often one or more conditions at a time, creating a false divide when you view disability in terms of us and them.
We...
Slow connection
Bright light / low light
Low contrast projector screen
Noisy environment
Various devices, OS, browsers
accessibility improves everyone's experience
1. Visual—make it easy to read
2. Auditory—make it easy to hear
3. Motor—make it easy to interact
4. Cognitive—make it easy to understand and focus
Design that's usable by all people, to the greatest extent possible, without the need for adaptation.
Universal design isn’t strictly about disability, but it wouldn’t exist if disability didn’t exist.
91% of people with disabilities use a “wireless device such as a cell phone or tablet.”
Mobile And Accessibility: Why You Should Care And What You Can Do About It (Smashing Magazine, 2014)
The Smashing Magazine article suggests some best pratices:
Google now uses loading speed as a metric for mobile search result ranking [source].
22 seconds is the average time it takes to fully load a mobile page.
—Think with Google, 2017
Clean semantic markup makes your content more accessible by
Search engines
Screen readers
Social networks
Documentation tools
News readers
Smart assistants
Accessibility overlaps with other best practices such as mobile web design, device independence, multi-modal interaction, usability, design for older users, and search engine optimization (SEO).
—Accessibility, W3C
COMMON things that people do on the web:
click
Google search
search in page
copy and paste
navigate back and forward
share links and bookmark them
share/post on social networks
refresh pages
drag and drop
Chrome Audits tool
Speak all paragraphs on a page:
document.querySelectorAll('p').forEach((el) => {
let u = new SpeechSynthesisUtterance(el.textContent);
window.speechSynthesis.speak(u);
});