wai-aria best practices - the tracks of mulder21c€¦ · wai-aria best practices...

42
WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Upload: others

Post on 12-Jun-2020

12 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

WAI-ARIABest Practices

콘텐츠연합플랫폼 클라이언트개발부 지성봉

Page 2: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

What Is WAI-ARIA

Page 3: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

WAIWeb Accessibility Initiative

ARIAAccessible Rich Internet Application

Page 4: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 5: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 6: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Why Use?

Page 7: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Supplement ForNative Language Semantics,

Not A Replacement

Page 8: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Role, Property, State

Page 9: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

RoleAttaching a role gives

assistive technologies informationabout how to handle each element

Page 10: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

<tag role="keyword">

<div role="navigation">

list of role keywordshttps://www.w3.org/TR/wai-aria/#x5-4-definition-of-roles

Page 11: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Property, StateBoth provide specific information about an object,

and both form part of the definitionof the nature of roles.

Page 12: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

<tag aria-*="value">

<button aria-expanded="false" aria-controls="sect1">

Page 13: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

How To Improve A11yWith WAI-ARIA

Page 14: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Step 1use native HTML

Page 15: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Then, When Use WAI-ARIA?the feature is available in HTML but it is notimplemented or it is implemented, butaccessibility support is not.visual design constraints rule out the use of aparticular ative elementfeature is not currently available in HTML

Page 16: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Step 2Add ARIA

Page 17: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Inline Or Via Script?

Page 18: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Step 3developing keyboard interface

Page 19: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

RequirementsAll interactive ARIA controls must be usable withthe keyboard.If can click or tap or drag or drop or slide or scroll,must also be able to perform an equivalentaction using the keyboardAll interactive widgets must be scripted torespond to standard key strokes or key strokecombinations where applicable

Page 20: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Best Practices

Page 21: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Landmark

Page 22: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 23: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Legecy<div class="header"> <h1>ARIA Landmarks Example</h1> </div> <div class="navigation"> <ul><li><a>...</a></li>...</ul> </div> <div class="main"> <h2>Banner Landmark</h2> <div class="tab-container"> ... </div> </div> <div class="sidebar"> <h2>Landmarks</h2> </div> <div class="sidebar"> <h2>Related W3C Documents</h2> </div> <div class="footer"> Copyright </div>

Page 24: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 25: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Use Native Language<header> <!-- banner landmark --> <h1>ARIA Landmarks Example</h1> </header> <nav> <!-- navigation landmark --> <ul>...</ul> </nav> <main> <!-- main landmark --> <h2>Banner Landmark</h2> <section> <!-- region landmark --> ... </section> </main> <aside> <!-- complementary landmark --> <h2>Landmarks</h2> </aside> <aside> <!-- complementary landmark --> <h2>Related W3C Documents</h2> </aside> <footer> <!-- contentinfo landmark --> Copyright </footer>

Page 26: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Use ARIA Techniques<div class="header" role="banner" > <h1>ARIA Landmarks Example</h1> </div> <div class="navigation" role="navigation" > <ul><li><a>...</a></li>...</ul> </div> <div class="main" role="main" > <h2>Banner Landmark</h2> <div class="tab-container" role="region" aria-label="Coding Tequniques" > ... </div> </div> <div class="sidebar" role="complementary" aria-labelledby="id3" > <h2 id="id3">Landmarks</h2> </div> <div class="sidebar" role="complementary" aria-labelledby="id4" > <h2 id="id4">Related W3c Documents</h2> </div> <div class="footer" role="contentinfo" > Copyright </div>

Page 27: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Tab Contents

Page 28: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 29: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Legacy<div class="tab-menu"> <a href="#tab-panel1">HTML</a> <a href="#tab-panel2">CSS</a> <a href="#tab-panel3">JavaScript</a> </div> <div class="tab-panels"> <div id="tab-panel1"> <h3>HTML</h3> ... </div> <div id="tab-panel2"> <h3>CSS</h3> ... </div> <div id="tab-panel3"> <h3>JavaScript</h3> ... </div> </div>

Page 30: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Use ARIA Techniques - Add Roles

<div class="tab-menu" role="tablist" > <a href="#tab-panel1" role="tab" >HTML</a> <a href="#tab-panel2" role="tab" >CSS</a> <a href="#tab-panel3" role="tab" >JavaScript</a> </div> <div class="tab-panels"> <div id="tab-panel1" role="tabpanel" > ... </div> <div id="tab-panel2" role="tabpanel" > ... </div> <div id="tab-panel3" role="tabpanel" > ... </div> </div>

Page 31: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Use ARIA Techniques - Add Properties, States

<div class="tab-menu" role="tablist"> <a id="tab1" href="#tab-panel1" role="tab" aria-controls="tab-panel1" aria-selected="true" >HTML</a> <a id="tab2" href="#tab-panel2" role="tab" aria-controls="tab-panel2" aria-selected="false" >CSS</a> <a id="tab3" href="#tab-panel3" role="tab" aria-controls="tab-panel3" aria-selected="false" >JavaScript</a> </div> <div class="tab-panels"> <div id="tab-panel1" role="tabpanel" aria-labelledby="tab1" > ... </div> <div id="tab-panel2" role="tabpanel" aria-labelledby="tab2" aria-hidden="true" > ... </div> <div id="tab-panel3" role="tabpanel" aria-labelledby="tab3" aria-hidden="true" > ... </div> </div>

Page 32: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Use ARIA Technique - Developing Keyboard Interface

Keyboard SupportKey Function

Tabwhen focus moves into the tab list, place focus on active tab elementWhen the tab list contains the focus, moves focus to the next element in the tabsequence, which is the tabpanel element

RightArrow

Moves focus to the next tab.If focus is on the last tab, moves focus to the first tab.Activates the newly focused tab

LeftArrow

Moves focus to the previous tab.If focus is on the first tab, moves focus to the last tab.Activates the newly focused tab

Home Moves focus to the first tab and activates it

End Moves focus to the last tab and activates it

Page 33: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Should I Implement It Myself?

Page 34: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Yes, If You Can.

Page 35: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

WAI-ARIA Authoring Practices 1.1

https://www.w3.org/TR/wai-aria-practices-1.1/

Page 36: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

WAI-ARIA 사례집

http://www.wah.or.kr/_Upload/pds2/WAI-ARIA%20사례집(온라인판).pdf

Page 37: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

Otherwiseyou can use jQueryUI, github, wai-aria 사례집, etc...

Page 38: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 39: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉
Page 40: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

NIA github

https://github.com/niawa/ARIA

Page 41: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

ReferencesWAI-ARIA Specificationhttps://www.w3.org/TR/wai-aria

Using ARIAhttps://www.w3.org/TR/using-aria

WAI-ARIA Authoring Practiceshttps://www.w3.org/TR/wai-aria-practices

HTML5 Accessibilityhttp://www.html5accessibility.com

Page 42: WAI-ARIA Best Practices - The Tracks of mulder21c€¦ · WAI-ARIA Best Practices 콘텐츠연합플랫폼 클라이언트개발부 지성봉

감사합니다[email protected]