accessibility & compatibility

49
Jared Smith @jared_w_smith webaim.org Accessibility & Compatibility

Upload: jared-smith

Post on 03-Dec-2014

1.885 views

Category:

Technology


2 download

DESCRIPTION

Slides from 2010 Accessibility Summit. Assistive technologies can make disabilities mostly irrelevant on the web, so long as web pages are designed and developed to be compatible with those technologies. So, let's stop disabling our audience and focus on making our Web sites truly accessible.

TRANSCRIPT

Page 1: Accessibility & Compatibility

Jared Smith@jared_w_smith

webaim.org

Accessibility & Compatibility

Page 2: Accessibility & Compatibility
Page 3: Accessibility & Compatibility

compatibility with ...?

people!!!

3/49

Page 4: Accessibility & Compatibility

user

technology

content & experience4/49

Page 5: Accessibility & Compatibility

technology bridges the gap between people and content & experience

5/49

Page 6: Accessibility & Compatibility

assistive technology

6/49

Page 7: Accessibility & Compatibility

not compatible7/49

Page 8: Accessibility & Compatibility

not fully compatible8/49

Page 9: Accessibility & Compatibility

30% of blind users’ online time is wasted

on access issues

9/49

Page 10: Accessibility & Compatibility

you can’t detect assistive technology

reliably

10/49

Page 11: Accessibility & Compatibility

you can’t trust assistive technology

it kinda sucks and is constantly changing11/49

Page 12: Accessibility & Compatibility

focus on standardsthen patch the cracks

12/49

Page 13: Accessibility & Compatibility

compliance != accessibility

use guidelines as tools to achieve accessibility13/49

Page 14: Accessibility & Compatibility

your site can be fully compliant, yet totally inaccessible

14/49

Page 15: Accessibility & Compatibility

your site can be fully compliant and

technically accessible, yet functionally inaccessible

15/49

Page 16: Accessibility & Compatibility

so, what do we do?

16/49

Page 17: Accessibility & Compatibility

aria

accessible rich internet applications

17/49

Page 18: Accessibility & Compatibility

aria paves the cow paths

18/49

Page 19: Accessibility & Compatibility

19/49

Page 20: Accessibility & Compatibility

20/49

Page 21: Accessibility & Compatibility

21/49

Page 22: Accessibility & Compatibility

22/49

Page 23: Accessibility & Compatibility

23/49

Page 24: Accessibility & Compatibility

today’s focus is oncompatibility beyond standards

24/49

... or the complexities of basic accessibility

Page 25: Accessibility & Compatibility

alternative text for images should present

CONTENT and FUNCTION

very rarely a description

25/49

Page 26: Accessibility & Compatibility

alt=”smiling lady”???

alt=”we are friendly and personable”??? 26/49

Page 27: Accessibility & Compatibility

“I don’t want to miss out on any content”vs.

“I’m listening to the page at 300 words per minute in a robotic computer voice - I don’t care about

the mood and feel of the page.”

focus on succinct content and functionality 27/49

Page 28: Accessibility & Compatibility

images that are the only thing within a link MUST have alt text

image buttons and hot spots too 28/49

Page 29: Accessibility & Compatibility

<a href=”http://apple.com/iphone”><img src=”iphone.jpg” alt=””><br>

Apple iPhone</a>

avoid redundant text and functionality

alternative text doesn’t have to be in the alt attribute 29/49

Page 30: Accessibility & Compatibility

form labels

<label for=”firstname”>First Name:</label><input type=”text” id=”firstname”

name=”firstname” />

First Name:

text boxes, text areas, select menus, checkboxes, and radio buttons.

30/49

Page 31: Accessibility & Compatibility

form labels

<label> is limited to one form control

use aria-labelledby formultiple labels per control

ormultiple controls per label

31/49

Page 32: Accessibility & Compatibility

form labels

If a visible text label is not available, ensure the form control is visually intuitive without it.

If so, provide the description in the title attribute<input title=”search terms”>

Search

... or an off-screen label 32/49

Page 33: Accessibility & Compatibility

"eldsets and legends

Use for all groups of radio buttons and checkboxes when a higher level legend is needed... and that’s all.

Overnight

Shipping method

Two dayGround

33/49

Page 34: Accessibility & Compatibility

use buttons to submit forms, not links

and ensure that buttons and links initiate a context change (use focus() if necessary)

34/49

Page 35: Accessibility & Compatibility

avoid accesskey and tabindex

...unless you're sure you know what you're doing.

learn the power of tabindex=”0” and tabindex=”-1” 35/49

Page 36: Accessibility & Compatibility

visually hiding content•display:none and visibility:hidden hide from everyone... and that’s a good thing.

•position off-screen le with CSS for screen readers

•use judiciously

36/49

Page 37: Accessibility & Compatibility

visually hiding content

.hidden { position:absolute; left:-10000px; top:auto;}

37/49

Page 38: Accessibility & Compatibility

hover is dead

the title attribute and onmouseover is (mostly) incompatible with touch-screen devices, keyboard,

voice control, and screen readers

38/49

Page 39: Accessibility & Compatibility

title attribute

• advisory information only• ignored by screen readers, except...

• form elements missing labels

• <frame title=”navigation”>

• <acronym>/<abbr> ...usually.

39/49

Page 40: Accessibility & Compatibility

“skip to main content” links?

Yes! Until browsers provide better keyboard navigation for sighted users

40/49

Page 41: Accessibility & Compatibility

you can position them off-screen if you must,but make them clearly visible on :focus

one “skip” link is typically sufficient

“skip to main content” links?

41/49

Page 42: Accessibility & Compatibility

a#skip { position:absolute; left:-10000px; top:auto;}a#skip:focus{ position:static;}

NOT display:none

42/49

Page 43: Accessibility & Compatibility

don’t remove focus indicators from links

a { outline:0;}

43/49

Page 44: Accessibility & Compatibility

enhance focus indicators

a:focus, a:hover { outline:1px; background-color:#ff0; text-decoration:underline;}

non-underlined links should become underlined on hover and focus

44/49

Page 45: Accessibility & Compatibility

when an element that has focus or is being read is modi#ed or destroyed

avoid screen reader “freakout” mode

45/49

Page 46: Accessibility & Compatibility

use javascript focus() to manage focus, if necessary

avoid screen reader “freakout” mode

46/49

Page 47: Accessibility & Compatibility

odds and ends

•Provide accurate, descriptive, succinct page titles.

•Don’t stress over screen reader pronunciation and quirks.

•Ensure full keyboard accessibility.

•Support zoom/text sizes to (at least) 2X.

•Layout tables don’t (typically) affect accessibility. Don’t use <th>, <caption>, or summary on layout tables.

47/49

Page 48: Accessibility & Compatibility

wave.webaim.org

48/49

Page 49: Accessibility & Compatibility

questions?

webaim.org@jared_w_smith