ImageVerifierCode 换一换
格式:PPT , 页数:29 ,大小:1.13MB ,
资源ID:389616      下载积分:2000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-389616.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(Taming Web 2.0 Accessibility Using theDojo Open Source .ppt)为本站会员(towelfact221)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

Taming Web 2.0 Accessibility Using theDojo Open Source .ppt

1、,Taming Web 2.0 Accessibility Using the Dojo Open Source Toolkit,Becky Gibson Web Accessibility Architect,2,Web 2.0 Accessibility Concerns Solving Web 2.0 Issues Accessible Rich Internet Applications (ARIA) Dojo JavaScript Open Source Toolkit How Dojo Addresses Accessibility Demos,Agenda,3,Web 2.0 A

2、ccessibility Concerns,Rich Interface controls Reliance on Mouse Lack of Semantics Incremental Updates via Ajax Changes in focus Excessive Navigation via Tab key Content aggregation from various resources (Mashups) Multimedia Lack of captioning Interaction issues Paradigm Shift,4,Solving Web 2.0 Acce

3、ssibility Issues,Provide Accommodations for Vision Hearing Cognitive Semantics & identification Navigation & keyboard support,5,Accessible Rich Internet Applications to the Rescue!,6,Accessible Rich Internet Applications (ARIA),Addresses Web 2.0 Accessibility Issues Developed at IBM and donated to W

4、3C Web Accessibility Initiative (WAI) Protocols & Formats Group Nearing last call draft Implemented in Firefox browser Being implemented in Opera 9.5 Support just announced for IE 8 Supported by Window-Eyes & JAWS screen readers Used by IBM, Dojo, AOL, Yahoo, Google, SAP, .,7,ARIA Details,Add role s

5、emantics to scripted user interface (UI) elements Update state information dynamically Make items focusable via tabindex attribute Add keyboard event handling Mimic the keyboard behavior of the rich client UI Minimize tab key navigation Add live region information and notification* to support Ajax,*

6、Live region support coming in Firefox 3,8,ARIA Example - Tree,Role = tree (on outer container),Role = treeitem expanded=true (on open Africa node),Role = treeitem selected=true (on highlighted Egypt child node with no children),Role = treeitem expanded=false (on closed Australia node),9,ARIA Live Re

7、gions,Perceivable sections are identified with region role Live indicates region is updated Values of: Off, Polite, Assertive, Rude Atomic identifies the extent of updates True entire region is updated and relevant False only changed element needs to be presented to user Controls identifies the elem

8、ent which triggers an update,10,ARIA Examples - Live Region,Editing auto save notification live=polite; atomic=true; Server maintenance notification Live=assertive; atomic=true; New mail - speak new entries Live=polite; atomic=false;,11,12,Keyboard Support,Implement focus handling via tabindex attri

9、bute Add key event handlers to implement navigation Use tab key to navigate between components Arrow and other key navigation within a component Keep keyboard and mouse interaction in-sync Set focus to elements, do NOT simulate focus via CSS DHTML Style Guide group is defining widget behaviors,13,Do

10、jo - Open Source JavaScript Toolkit,“Easy” Ajax Data Binding Full event system Browser abstraction layer User Interface Widgets Dual Licensed Academic Free License v2.1 BSD License Dojo 1.0 available in November, 2007 Dojo 1.1 shipping in March, 2008,14,Core Widget Set (dijit),Accessible Internation

11、alized Customizable Look and Feel Developer Documentation API User Manual Supported Browsers Firefox 2.0, Firefox 3 in progress IE 6+ Safari 3 Data Binding Tree, Grid*, Select,*Grid is in dojox (dojo extensions),15,Dojo Core Widgets,Form Widgets Layout Widgets Advanced Widgets,16,Form Widgets,Button

12、, Dropdown Button, Combo Button Checkbox, Radio ComboBox, Filtering Select Textbox Currency & Integer Validation Textboxes Resizable Textarea Slider Integer Spinner Inline Editbox Dropdown Calendar,17,Layout Widgets,Accordion Container Content Pane Dialog Border Container Page Container Split Contai

13、ner Tab Container Title Pane,18,Advanced Widgets,Color Palette Context Menu Rich Text Editor Progress Bar Toolbar Tooltip, Tooltip Dialog Tree,19,Dojo 1.0.2/1.1 Core Widget Accessibility,ARIA Specification Implemented Fully keyboard accessible in Firefox and Internet Explorer Screen reader accessibl

14、e in Firefox Work in Operating System High Contrast mode Work with images off No accessible support for Drag and Drop (yet) Drag and drop functionality must be duplicated via alternate mechanism,20,Keyboard Support in Dojo,Extended tabindex (IE, FF, Opera 9.5, HTML5) Keyboard event normalization Key

15、board navigation widget mixin Functions for finding elements in the tab order,21,High Contrast Detection & Support,Detect high contrast mode Detect images off mode (FF only) dijit_a11y class to trigger styles Provide text alternatives for CSS Background images No hard coded font sizes,22,Dojo Demo (

16、pre-recorded demos at http:/ is More than the Sum of Parts,Implement overall application navigation Add ContentPanes into the tab order as necessary Check for accessibility attributes optionsTitle on ComboButton Create content in appropriate source code order,24,Incorrect Example - BorderLayout,top

17、barbottom barmain content,INCORRECT source code order, bottom region should be below main content!,25,Rendered BorderLayout,top,bottom,Main content,Correct tab order is top, main content, bottom. Code from previous page would create the incorrect reading order of top, bottom, main content.,26,Correc

18、t BorderLayout Source Code Order,top barmain contentbottom bar,27,Additional Web 2.0 Accessibility Challenges,ARIA spec not yet a standard planned for 2008 No ARIA support in Internet Explorer - Coming in IE8! No tabindex support in Safari (yet) thus no keyboard support Assistive Technology support

19、needs to evolve Issues with virtual browsing and interactive mode in screen readers Additional support for live regions,“The journey of a thousand miles starts with a single step. “,28,Summary - Web 2.0 CAN be Tamed!,Web is dynamic and constantly evolving Accessibility of Web 2.0 is possible through

20、 Best practices and thoughtful design Updated Technologies such a ARIA Accessibility integrated into toolkits such as Dojo Embracing of Accessibility technologies by key Web players,29,Resources,Beckys Accessibility Presentations and Papers http:/ ARIA Roadmap, Best Practices, Primer, Specifications

21、 http:/www.w3.org/wai/pf Mozilla Developer Center - Firefox ARIA Information http:/developer.mozilla.org/en/docs/Accessible_DHTML Mailing list for ARIA issues http:/lists.w3.org/Archives/Public/wai-xtech/ Dojo Home - http:/www.dojotoolkit.org/ Book - http:/www.dojotoolkit.org/book/dojo-book-1-0 Accessibility Sections of Dojo Book A11y info included on each dijit page http:/www.dojotoolkit.org/book/dojo-book-0-9/part-2-dijit-0 Creating Accessible Widgets Testing Accessible Widgets DHTML Style Guide Draft http:/

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1