SlideShare ist ein Scribd-Unternehmen logo
1 von 54
Mitsue-Links Co.,Ltd.
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved.
Accessible Graphics for High Pixel
Density Era
CSUN 2015
March 6, 2015
Team Two, Accessibility Division
Takeshi Kurosawa
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 1
Materials
•http://goo.gl/su2kZw
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 2
about:me
•Takeshi Kurosawa
•Accessibility Engineer @ Mitsue-Links Co.,Ltd.
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 3
About Mitsue-Links
•One of Japan's top information integrators
•One stop solutions: from consulting to production
•A W3C member
•Celebrating 25th anniversary
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 4
This session will cover…
•Icon fonts
http://fortawesome.github.io/Font-Awesome/icon/subway/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 5
Agenda
•Background
•Introduction of icon fonts
•Issues of Private Use Areas (PUA) icon fonts
•Benefits of ligature icon fonts
•Use scenes of icon fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 6
Background
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 7
High pixel density era
•High pixel density devices have become popular
•1 CSS pixel > 1 device pixel
•1× graphics will produce artifacts
http://www.apple.com/macbook-pro/features-retina/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 8
Graphics of high pixel density era
•Create graphics for each pixel density?
http://www.w3.org/TR/respimg-usecases/#device-pixel-ratio-based-selection
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 9
Vector graphics
•Create a graphic and make devices scale it
•Icon fonts
•Scalable Vector Graphics (SVG)
http://fortawesome.github.io/Font-Awesome/icon/subway/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 10
Icon fonts are popular but…
•Issue 1. Lack of alternative texts
•Issue 2. Unrelated characters may be displayed if
specified icon fonts are not used
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 11
Icon Fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 12
Icon fonts
•Glyphs = Icons
•Usually vector fonts
•Two types of implementations
•PUA Icon Fonts
•Ligature Icon Fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 13
PUA icon fonts
•Iconic glyphs = Unicode’s Private Use Areas (PUA)
•PUA characters are private:
•don’t correspond to actual characters
•may have different meaning across fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 14
http://fortawesome.github.io/Font-Awesome/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 15
https://msdn.microsoft.com/en-US/library/windows/apps/jj841126.aspx
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 16
Ligature icon fonts
•Iconic glyphs = ligatures
•Ligatures are special glyph forms that consist of a
series of characters
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 17
http://kudakurage.com/ligature_symbols/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 18
PUA Icon Fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 19
PUA icon fonts
•Iconic glyphs = PUA characters
•CSS pseudo-elements (:before/:after) inserts PUA
characters
:before {
font-family: iconfont;
content: "e000";
}
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 20
Issues of PUA icon fonts
•Issue 1. Lack of alternative texts
•Issue 2. Unrelated characters may be displayed if
specified icon fonts are not used
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 21
Issue 1. Lack of alternative texts
•Example: a link to settings page
•No alternative texts
<a href="/setting">
<i class="fa fa-cog"></i>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 22
Typical “solution”
•Adding invisible texts
<a href="/setting">
<i class="fa fa-cog"></i>
<span class="hidden">setting</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 23
Is it enough?
•For screen readers
•May be ok
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 24
http://opendyslexic.org/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 25
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 26
If specified icon fonts are not used
•Invisible alternative texts are invisible
<a href="/setting">
<i class="fa fa-cog"></i>
<span class="hidden">setting</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 27
Is it enough? No.
•For screen readers
•May be ok
•If specified icon fonts are not used
•No visible alternative texts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 28
Another example at CSUN 2014
•TPG demonstrated using icon font with Adobe Blank
at CSUN 2014
http://files.paciellogroup.com/training/CSUN2014/lessonslearned/demos/usecase3_5.html
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 29
http://files.paciellogroup.com/training/CSUN2014/lessonslearned/
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 30
Icon fonts with Adobe Blank
•Alternative texts are invisible if Adobe Blank is used
•Alternative texts are visible if Adobe Blank is not used
<a href="/setting">
<i class="fa fa-cog"></i>
<span class="adobeblank">setting</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 31
Remaining issues of the previous example
•Alternative texts remain invisible if Adobe Blank is
used but icon fonts are not
•Issue of unrelated characters being displayed still
remain
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 32
Issues of PUA icon fonts
•Issue 1. Lack of alternative texts
•Issue 2. Unrelated characters may be displayed if
specified icon fonts are not used
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 33
Issue 2. Unrelated characters may be displayed
Segoe UI Symbols Linux Libertine
http://www.adamdawes.com/windows8/win8_segoeuisymbol.html
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 34
http://www.adamdawes.com/windows8/win8_segoeuisymbol.html
Issue 2. Unrelated characters may be displayed
Segoe UI Symbols Linux Libertine
U+E106: Delete U+E106: Spread Sheet
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 35
Ligature Icon Fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 36
Ligature icon fonts
•Iconic glyphs = ligatures
•Ligatures: special glyphs formed of a series of
characters
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 37
Example of ligature fonts
•Example: a link to settings page
<a href="/setting">
<span class="lsf-icon">setting</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 38
Alternative texts
•Texts are written in HTML
<a href="/setting">
<span class="lsf-icon">setting</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 39
If specified icon fonts are not used
•Texts written in HTML are displayed
<a href="/setting">
<span class="lsf-icon">setting</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 40
Benefits of ligature fonts
•Issue 1. Lack of alternative texts
 texts written in HTML are used
•Issue 2. Unrelated characters may be displayed if
specified icon fonts are not used
 texts written in HTML are used
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 41
Use Scenes of Icon Fonts
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 42
Use scenes of icon fonts
•How
•Using ligature icon fonts (texts must be written in
HTML)
•For
•Texts with a little orthographic variations
•Non decorative images
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 43
Caveats of ligature icon fonts
•Caution with orthographic variations
•Cannot be used as decorative images
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 44
Orthographic variations/Internationalization
•Orthographic variations:
•“setting” and “settings”
•“settings”, “preferences”, “options”, and so on
•Internationalization
•Requires ligatures for each language
•“settings” in English, “設定” in Japanese, …
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 45
Orthographic variations: example
•Example: settings
<a href="/setting">
<span class="lsf-icon">settings</span>
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 46
Decorative images
•Ligature icon fonts cannot be used as decorative
images
•If you do so, texts are rendered/read out twice
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 47
Decorative images: example
•Example: setting
<a href="/setting">
<span class="lsf-icon">setting</span>
setting
</a>
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 48
Decorative images: example renderings
•Texts are rendered twice
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 49
Limitation of icon fonts
•Icon fonts require at least one character to render
icons
•aria-hidden cannot solve the issues of renderings
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 50
Right graphics in the right place
•You can use SVG (Scalable Vector Graphics) for
decorative images
https://www.polymer-project.org/components/core-icons/demo.html
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 51
Conclusion
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 52
High pixel density era
•Vector graphics are becoming more popular
•Icon Fonts
•PUA Icon Fonts: number of issues
•Ligature Icon Fonts: suitable for non-decorative
icons
Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 53
Graphics of high pixel density era
•Provide beautiful and accessible graphics for
everyone

Weitere ähnliche Inhalte

Andere mochten auch

Transforming k 12 education through online learning
Transforming k 12 education through online learningTransforming k 12 education through online learning
Transforming k 12 education through online learning
ngroselle
 
Preproduction work
Preproduction workPreproduction work
Preproduction work
ecsmedia
 
Media (horror movie storyboard
Media (horror movie storyboardMedia (horror movie storyboard
Media (horror movie storyboard
ecsmedia
 
Angle shots
Angle shotsAngle shots
Angle shots
ecsmedia
 
Camera shots
Camera shots Camera shots
Camera shots
ecsmedia
 

Andere mochten auch (20)

Tech talk October 2013 - Rotary Foundation Cadre of Technical Advisers
Tech talk October 2013 - Rotary Foundation Cadre of Technical AdvisersTech talk October 2013 - Rotary Foundation Cadre of Technical Advisers
Tech talk October 2013 - Rotary Foundation Cadre of Technical Advisers
 
If it's not broken, why fix it
If it's not broken, why fix it If it's not broken, why fix it
If it's not broken, why fix it
 
Transforming k 12 education through online learning
Transforming k 12 education through online learningTransforming k 12 education through online learning
Transforming k 12 education through online learning
 
Dress codes
Dress codesDress codes
Dress codes
 
A Widget Guide
A Widget GuideA Widget Guide
A Widget Guide
 
North lochs archives
North lochs archivesNorth lochs archives
North lochs archives
 
Preproduction work
Preproduction workPreproduction work
Preproduction work
 
Media (horror movie storyboard
Media (horror movie storyboardMedia (horror movie storyboard
Media (horror movie storyboard
 
Rotary International Age Distribution by Members
Rotary International Age Distribution by MembersRotary International Age Distribution by Members
Rotary International Age Distribution by Members
 
Angle shots
Angle shotsAngle shots
Angle shots
 
PRACTICO 1 PORTAFOLIO DE DIAGNOSTICO POR MARIO AGUIRRE V
PRACTICO 1 PORTAFOLIO DE DIAGNOSTICO POR MARIO AGUIRRE VPRACTICO 1 PORTAFOLIO DE DIAGNOSTICO POR MARIO AGUIRRE V
PRACTICO 1 PORTAFOLIO DE DIAGNOSTICO POR MARIO AGUIRRE V
 
Camera shots
Camera shots Camera shots
Camera shots
 
20 Government Innovations That Matter
20 Government Innovations That Matter20 Government Innovations That Matter
20 Government Innovations That Matter
 
AS J-pop magazine Evaluation
AS J-pop magazine EvaluationAS J-pop magazine Evaluation
AS J-pop magazine Evaluation
 
12 tips untuk pbl yang berkesan
12 tips untuk pbl yang berkesan12 tips untuk pbl yang berkesan
12 tips untuk pbl yang berkesan
 
Launch
LaunchLaunch
Launch
 
Duurzame mobiliteit als lifestyle
Duurzame mobiliteit als lifestyle Duurzame mobiliteit als lifestyle
Duurzame mobiliteit als lifestyle
 
IT Intervention Paper
IT Intervention PaperIT Intervention Paper
IT Intervention Paper
 
Powerpoint cuerpohumano
Powerpoint cuerpohumanoPowerpoint cuerpohumano
Powerpoint cuerpohumano
 
Pre production 1
Pre production 1Pre production 1
Pre production 1
 

Ähnlich wie Accessible Graphics for High Pixel Density Era

Prototyping presentation.pptx
Prototyping presentation.pptxPrototyping presentation.pptx
Prototyping presentation.pptx
AchintKaur27
 

Ähnlich wie Accessible Graphics for High Pixel Density Era (20)

Scaling design: When and why to build a design system, ClickSoftware’s case s...
Scaling design: When and why to build a design system, ClickSoftware’s case s...Scaling design: When and why to build a design system, ClickSoftware’s case s...
Scaling design: When and why to build a design system, ClickSoftware’s case s...
 
Manila MuleSoft Meetup #4 January 2019
Manila MuleSoft Meetup #4 January 2019Manila MuleSoft Meetup #4 January 2019
Manila MuleSoft Meetup #4 January 2019
 
AAUP 2015: Fonts in E-Books Panel Outline
AAUP 2015: Fonts in E-Books Panel OutlineAAUP 2015: Fonts in E-Books Panel Outline
AAUP 2015: Fonts in E-Books Panel Outline
 
Wireframes, prototypes and mockups - comparison of tools.
Wireframes, prototypes and mockups - comparison of tools.Wireframes, prototypes and mockups - comparison of tools.
Wireframes, prototypes and mockups - comparison of tools.
 
Design System & Atomic Design
Design System & Atomic DesignDesign System & Atomic Design
Design System & Atomic Design
 
Intro to the Office UI Fabric
Intro to the Office UI FabricIntro to the Office UI Fabric
Intro to the Office UI Fabric
 
Pundit at Digital Humanities Austria 2015
Pundit at Digital Humanities Austria 2015Pundit at Digital Humanities Austria 2015
Pundit at Digital Humanities Austria 2015
 
Creating websites with SXA in 15 minutes
Creating websites with SXA in 15 minutesCreating websites with SXA in 15 minutes
Creating websites with SXA in 15 minutes
 
Scintillating
ScintillatingScintillating
Scintillating
 
Developer 1: Workflows And Code Management
Developer 1: Workflows And Code ManagementDeveloper 1: Workflows And Code Management
Developer 1: Workflows And Code Management
 
Citizen Developer Tools - session at SPS New England 10/20/2018
Citizen Developer Tools - session at SPS New England 10/20/2018Citizen Developer Tools - session at SPS New England 10/20/2018
Citizen Developer Tools - session at SPS New England 10/20/2018
 
Modern Domino: Icons
Modern Domino: IconsModern Domino: Icons
Modern Domino: Icons
 
Bringing a Design Language to Life in Sketch and React
Bringing a Design Language to Life in Sketch and ReactBringing a Design Language to Life in Sketch and React
Bringing a Design Language to Life in Sketch and React
 
Building & Maintaining A Living Style Guide for a Post Apocalyptic Web
 Building & Maintaining A Living Style Guide for a Post Apocalyptic Web Building & Maintaining A Living Style Guide for a Post Apocalyptic Web
Building & Maintaining A Living Style Guide for a Post Apocalyptic Web
 
Publishing API documentation -- Presentation
Publishing API documentation -- PresentationPublishing API documentation -- Presentation
Publishing API documentation -- Presentation
 
Making Your Site Printable: CSS Summit 2014
Making Your Site Printable: CSS Summit 2014Making Your Site Printable: CSS Summit 2014
Making Your Site Printable: CSS Summit 2014
 
Prototyping presentation.pptx
Prototyping presentation.pptxPrototyping presentation.pptx
Prototyping presentation.pptx
 
Citizen Developer Tools (session at SharePoint Saturday Twin Cities 4/14/2018...
Citizen Developer Tools (session at SharePoint Saturday Twin Cities 4/14/2018...Citizen Developer Tools (session at SharePoint Saturday Twin Cities 4/14/2018...
Citizen Developer Tools (session at SharePoint Saturday Twin Cities 4/14/2018...
 
Prototyping Accessibility: Booster 2019
Prototyping Accessibility: Booster 2019Prototyping Accessibility: Booster 2019
Prototyping Accessibility: Booster 2019
 
Design System - Fail, Learn, Build, Test
Design System - Fail, Learn, Build, TestDesign System - Fail, Learn, Build, Test
Design System - Fail, Learn, Build, Test
 

Mehr von Mitsue-Links Co.,Ltd. Accessibility Department

Mehr von Mitsue-Links Co.,Ltd. Accessibility Department (17)

WCAG 2.2で追加される達成基準
WCAG 2.2で追加される達成基準WCAG 2.2で追加される達成基準
WCAG 2.2で追加される達成基準
 
Webアクセシビリティ向上のためのマインドセット変革
Webアクセシビリティ向上のためのマインドセット変革Webアクセシビリティ向上のためのマインドセット変革
Webアクセシビリティ向上のためのマインドセット変革
 
CSUN 2018 参加報告セミナー
CSUN 2018 参加報告セミナーCSUN 2018 参加報告セミナー
CSUN 2018 参加報告セミナー
 
Webと出版の融合で高まる情報アクセシビリティ向上への期待
Webと出版の融合で高まる情報アクセシビリティ向上への期待Webと出版の融合で高まる情報アクセシビリティ向上への期待
Webと出版の融合で高まる情報アクセシビリティ向上への期待
 
今さら聞けない!?Webアクセシビリティに取り組む理由
今さら聞けない!?Webアクセシビリティに取り組む理由今さら聞けない!?Webアクセシビリティに取り組む理由
今さら聞けない!?Webアクセシビリティに取り組む理由
 
WAI-ARIA珍プレー好プレー
WAI-ARIA珍プレー好プレーWAI-ARIA珍プレー好プレー
WAI-ARIA珍プレー好プレー
 
Webアクセシビリティ なぜ?どうやって?
Webアクセシビリティ なぜ?どうやって?Webアクセシビリティ なぜ?どうやって?
Webアクセシビリティ なぜ?どうやって?
 
アクセシビリティへの取り組みの歴史
アクセシビリティへの取り組みの歴史アクセシビリティへの取り組みの歴史
アクセシビリティへの取り組みの歴史
 
Webデザインにおけるアクセシビリティへの取組み
Webデザインにおけるアクセシビリティへの取組みWebデザインにおけるアクセシビリティへの取組み
Webデザインにおけるアクセシビリティへの取組み
 
「10年後のWeb」のために、今すべきこと
「10年後のWeb」のために、今すべきこと「10年後のWeb」のために、今すべきこと
「10年後のWeb」のために、今すべきこと
 
Web制作者が知っておきたいアクセシビリティ最新動向
Web制作者が知っておきたいアクセシビリティ最新動向Web制作者が知っておきたいアクセシビリティ最新動向
Web制作者が知っておきたいアクセシビリティ最新動向
 
Web Componentsのアクセシビリティ
Web ComponentsのアクセシビリティWeb Componentsのアクセシビリティ
Web Componentsのアクセシビリティ
 
Webアクセシビリティの現状ダイジェスト 2014
Webアクセシビリティの現状ダイジェスト 2014Webアクセシビリティの現状ダイジェスト 2014
Webアクセシビリティの現状ダイジェスト 2014
 
Mobile and Accessibility - A Japanese Perspective
Mobile and Accessibility - A Japanese PerspectiveMobile and Accessibility - A Japanese Perspective
Mobile and Accessibility - A Japanese Perspective
 
Webアクセシビリティ
WebアクセシビリティWebアクセシビリティ
Webアクセシビリティ
 
Webアクセシビリティ 基本のキ
Webアクセシビリティ 基本のキWebアクセシビリティ 基本のキ
Webアクセシビリティ 基本のキ
 
アクセシビリティを加速するWAI-ARIA
アクセシビリティを加速するWAI-ARIAアクセシビリティを加速するWAI-ARIA
アクセシビリティを加速するWAI-ARIA
 

Kürzlich hochgeladen

valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
nilamkumrai
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 

Kürzlich hochgeladen (20)

APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft DatingDubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...
VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...
VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...
 
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
 
Enjoy Night⚡Call Girls Samalka Delhi >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Samalka Delhi >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Samalka Delhi >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Samalka Delhi >༒8448380779 Escort Service
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 

Accessible Graphics for High Pixel Density Era

  • 1. Mitsue-Links Co.,Ltd. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. Accessible Graphics for High Pixel Density Era CSUN 2015 March 6, 2015 Team Two, Accessibility Division Takeshi Kurosawa
  • 2. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 1 Materials •http://goo.gl/su2kZw
  • 3. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 2 about:me •Takeshi Kurosawa •Accessibility Engineer @ Mitsue-Links Co.,Ltd.
  • 4. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 3 About Mitsue-Links •One of Japan's top information integrators •One stop solutions: from consulting to production •A W3C member •Celebrating 25th anniversary
  • 5. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 4 This session will cover… •Icon fonts http://fortawesome.github.io/Font-Awesome/icon/subway/
  • 6. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 5 Agenda •Background •Introduction of icon fonts •Issues of Private Use Areas (PUA) icon fonts •Benefits of ligature icon fonts •Use scenes of icon fonts
  • 7. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 6 Background
  • 8. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 7 High pixel density era •High pixel density devices have become popular •1 CSS pixel > 1 device pixel •1× graphics will produce artifacts http://www.apple.com/macbook-pro/features-retina/
  • 9. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 8 Graphics of high pixel density era •Create graphics for each pixel density? http://www.w3.org/TR/respimg-usecases/#device-pixel-ratio-based-selection
  • 10. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 9 Vector graphics •Create a graphic and make devices scale it •Icon fonts •Scalable Vector Graphics (SVG) http://fortawesome.github.io/Font-Awesome/icon/subway/
  • 11. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 10 Icon fonts are popular but… •Issue 1. Lack of alternative texts •Issue 2. Unrelated characters may be displayed if specified icon fonts are not used
  • 12. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 11 Icon Fonts
  • 13. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 12 Icon fonts •Glyphs = Icons •Usually vector fonts •Two types of implementations •PUA Icon Fonts •Ligature Icon Fonts
  • 14. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 13 PUA icon fonts •Iconic glyphs = Unicode’s Private Use Areas (PUA) •PUA characters are private: •don’t correspond to actual characters •may have different meaning across fonts
  • 15. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 14 http://fortawesome.github.io/Font-Awesome/
  • 16. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 15 https://msdn.microsoft.com/en-US/library/windows/apps/jj841126.aspx
  • 17. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 16 Ligature icon fonts •Iconic glyphs = ligatures •Ligatures are special glyph forms that consist of a series of characters
  • 18. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 17 http://kudakurage.com/ligature_symbols/
  • 19. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 18 PUA Icon Fonts
  • 20. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 19 PUA icon fonts •Iconic glyphs = PUA characters •CSS pseudo-elements (:before/:after) inserts PUA characters :before { font-family: iconfont; content: "e000"; }
  • 21. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 20 Issues of PUA icon fonts •Issue 1. Lack of alternative texts •Issue 2. Unrelated characters may be displayed if specified icon fonts are not used
  • 22. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 21 Issue 1. Lack of alternative texts •Example: a link to settings page •No alternative texts <a href="/setting"> <i class="fa fa-cog"></i> </a>
  • 23. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 22 Typical “solution” •Adding invisible texts <a href="/setting"> <i class="fa fa-cog"></i> <span class="hidden">setting</span> </a>
  • 24. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 23 Is it enough? •For screen readers •May be ok
  • 25. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 24 http://opendyslexic.org/
  • 26. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 25
  • 27. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 26 If specified icon fonts are not used •Invisible alternative texts are invisible <a href="/setting"> <i class="fa fa-cog"></i> <span class="hidden">setting</span> </a>
  • 28. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 27 Is it enough? No. •For screen readers •May be ok •If specified icon fonts are not used •No visible alternative texts
  • 29. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 28 Another example at CSUN 2014 •TPG demonstrated using icon font with Adobe Blank at CSUN 2014 http://files.paciellogroup.com/training/CSUN2014/lessonslearned/demos/usecase3_5.html
  • 30. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 29 http://files.paciellogroup.com/training/CSUN2014/lessonslearned/
  • 31. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 30 Icon fonts with Adobe Blank •Alternative texts are invisible if Adobe Blank is used •Alternative texts are visible if Adobe Blank is not used <a href="/setting"> <i class="fa fa-cog"></i> <span class="adobeblank">setting</span> </a>
  • 32. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 31 Remaining issues of the previous example •Alternative texts remain invisible if Adobe Blank is used but icon fonts are not •Issue of unrelated characters being displayed still remain
  • 33. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 32 Issues of PUA icon fonts •Issue 1. Lack of alternative texts •Issue 2. Unrelated characters may be displayed if specified icon fonts are not used
  • 34. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 33 Issue 2. Unrelated characters may be displayed Segoe UI Symbols Linux Libertine http://www.adamdawes.com/windows8/win8_segoeuisymbol.html
  • 35. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 34 http://www.adamdawes.com/windows8/win8_segoeuisymbol.html Issue 2. Unrelated characters may be displayed Segoe UI Symbols Linux Libertine U+E106: Delete U+E106: Spread Sheet
  • 36. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 35 Ligature Icon Fonts
  • 37. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 36 Ligature icon fonts •Iconic glyphs = ligatures •Ligatures: special glyphs formed of a series of characters
  • 38. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 37 Example of ligature fonts •Example: a link to settings page <a href="/setting"> <span class="lsf-icon">setting</span> </a>
  • 39. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 38 Alternative texts •Texts are written in HTML <a href="/setting"> <span class="lsf-icon">setting</span> </a>
  • 40. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 39 If specified icon fonts are not used •Texts written in HTML are displayed <a href="/setting"> <span class="lsf-icon">setting</span> </a>
  • 41. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 40 Benefits of ligature fonts •Issue 1. Lack of alternative texts  texts written in HTML are used •Issue 2. Unrelated characters may be displayed if specified icon fonts are not used  texts written in HTML are used
  • 42. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 41 Use Scenes of Icon Fonts
  • 43. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 42 Use scenes of icon fonts •How •Using ligature icon fonts (texts must be written in HTML) •For •Texts with a little orthographic variations •Non decorative images
  • 44. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 43 Caveats of ligature icon fonts •Caution with orthographic variations •Cannot be used as decorative images
  • 45. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 44 Orthographic variations/Internationalization •Orthographic variations: •“setting” and “settings” •“settings”, “preferences”, “options”, and so on •Internationalization •Requires ligatures for each language •“settings” in English, “設定” in Japanese, …
  • 46. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 45 Orthographic variations: example •Example: settings <a href="/setting"> <span class="lsf-icon">settings</span> </a>
  • 47. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 46 Decorative images •Ligature icon fonts cannot be used as decorative images •If you do so, texts are rendered/read out twice
  • 48. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 47 Decorative images: example •Example: setting <a href="/setting"> <span class="lsf-icon">setting</span> setting </a>
  • 49. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 48 Decorative images: example renderings •Texts are rendered twice
  • 50. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 49 Limitation of icon fonts •Icon fonts require at least one character to render icons •aria-hidden cannot solve the issues of renderings
  • 51. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 50 Right graphics in the right place •You can use SVG (Scalable Vector Graphics) for decorative images https://www.polymer-project.org/components/core-icons/demo.html
  • 52. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 51 Conclusion
  • 53. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 52 High pixel density era •Vector graphics are becoming more popular •Icon Fonts •PUA Icon Fonts: number of issues •Ligature Icon Fonts: suitable for non-decorative icons
  • 54. Copyright(c) Mitsue-Links Co., Ltd. All Rights Reserved. 53 Graphics of high pixel density era •Provide beautiful and accessible graphics for everyone

Hinweis der Redaktion

  1. 0
  2. 1
  3. 2
  4. Mitsue-Links is one of Japan's top information integrators, providing unique services centered on digital content. Based on your company's own corporate strategy, we offer one stop solutions for all enterprise requirements including consulting, marketing, analysis, planning, development/production, and site operation/maintenance. Mitsue-Link is one of W3C’s Members. Mitsue-Links was established in 1990. It is 25 years old.
  5. In this session, I will discuss Icon Fonts.
  6. 5
  7. At first I will introduce brief background of Icon Fonts.
  8. Today, High Pixel Density devices have become popular. In those devices, 1 CSS pixel is represented by 2 × 2 or 3 × 3 p device or physical pixels. There are even 4 times pixel density devices such as Galaxy Note Edge. In those environments, 1 by 1 graphics will produce artifacts or be looked blurry. So how can we deal with that?
  9. One approach to make graphics crisp in High Pixel Density devices is creating graphics for each pixel density. For example, authors create 2 graphics when they target 1x and 2x devices. However in this approach, several graphics are required for each image. Even if you create a single graphic which targets most high pixel density devices, you’ll need a very large screen to create graphics.
  10. Another approach is using vector graphics. In this approach, authors create one graphic and user’s devices scale it to fit the devices. Common vector graphics include Icon Fonts and Scalable Vector Graphics (SVG). Today I will discuss Icon Fonts.
  11. Icon fonts are popular as they are easy to deploy and tweak with CSS. However, icon fonts tend to cause accessibility issues including the issue of alternative texts being lacked and issue of unrelated characters being displayed if specified icon fonts are not applied. Before discussing the issues, we need to learn about two types of Icon Fonts.
  12. So I will introduce icon fonts briefly.
  13. Icon fonts are fonts that glyphs represents icons. It’s usually vector fonts so that icon looks crisp in high pixel density devices. In technically, there are two types of implementations of icon fonts and difference between them impact accessibility issues. One is PUA icon fonts and the other is Ligature Icon Fonts Let’s look PUA icon fonts.
  14. PUA icon fonts are fonts that glyphs of Unicode Private Use Areas represent icons. Private Use Areas are Unicode’s special areas that characters will not be assigned officially. In other words PUA don’t correspond actual characters like alphabets or decimals. Fonts, software or devices can use PUA for private purpose so that characters may have different meaning across them.
  15. Popular icon fonts include Font Awesome
  16. And Segoe UI Symbols for Windows Store apps.
  17. The other type of icon font is ligature icon fonts. In this kind of fonts, iconic glyphs are represented as special ligatures. Ligatures are special glyph forms that consist of a series of glyphs. Typical English ligatures include small f, small f and small i or capital Q and small u. Ligature fonts extends ligatures to represent variety of icons.
  18. Popular ligature icons include Ligature Symbols. In this fonts, the word “cut” represent scissors icon. Those difference impacts accessibility. So let’s look each icon fonts a bit more.
  19. First I will discuss PUA Icon Fonts.
  20. PUA icon fonts are typically used with CSS pseudo-elements. CSS pseudo-elements insert PUA characters with screen and those characters represent icons.
  21. There are two major accessibility issues of PUA Icon Fonts. The one is lack of alternative texts. The other is unrelated characters being displayed if specified icon fonts are not used. First I will discuss the lack of alternative texts.
  22. This is an example of a link to setting page of a web site. The icon is represented by empty “i” element. The PUA characters is inserted by CSS pseudo-element so that there are no alternatives in HTML. Uses of screen readers can’t understand the purpose of links.
  23. Typical solution is adding invisible texts which are typically cropped or positioned off screen by CSS.
  24. Is this solution is enough? For screen readers it may work – screen readers can read out alternative texts. But there are other environments that accessibility.
  25. Some users require specific fonts to understand contents. For example, OpenDyslexic is a font for dyslexia users.
  26. And browsers provide features which allow users use user specified fonts and discard author specified fonts. Some users use this feature for ethics regardless of reading disabilities.
  27. In those environments, author specified icon fonts are not used. If icon fonts are not used, icon is not rendered and invisible alternative texts are invisible so that users can’t understand the purpose of the link.
  28. So the typical solution is not enough. The it may work for screen readers but not work for environments which specified icon fonts are not used.
  29. At CSUN 2014, TPG demonstrated using icon fonts with Adobe Blank font.
  30. The session title was “Lessons Learned: Accessibility Theory vs. Implementation Reality”.
  31. In this example, Adobe Blank is used to hide the alternative texts visually. Adobe Blank is special fonts that every characters invisible. So alternative texts are invisible if Adobe Blank is used. And alternative text are visible if Adobe Blank is not used, for example, users prefer user-specified fonts and discard author-specified fonts.
  32. So in the previous example, alternative texts are visible if user prefer user-specified fonts. However there are situations where Adobe Blank is used and icon fonts are not used or downloaded as Adobe Blank is typically inline-ed in CSS files. In this situation, alternate texts remain invisible. Additionally, issue of unrelated characters being displayed still remain. Next, I will this issue.
  33. The other issue of PUA icon fonts is unrelated characters being displayed if specified icon fonts are not used.
  34. I mentioned previously, PUA characters don’t correspond actual characters. Fonts can use PUA for private purpose so that characters may have different meaning across them. For example, Segoe UI Symbols and Linux Libertine assign different glyphs for same character.
  35. For example, Segoe UI Symbols assign Delete –cross– icon and Linux Libertine assign Spread Sheet –table– icon for U+E106. So users who prefer user specified fonts will see different icons than author intended this could uses lead misunderstanding. Although PUA icon fonts have those issues, the other kind of icon fonts doesn’t have issues.
  36. Then I will introduce ligature icon fonts.
  37. Ligature icon fonts use ligatures to represent iconic glyphs. Ligatures are special glyphs formed of a series of characters.
  38. For example, I can use the word “setting” to represent gear icon and used in a link to settings page. The word “setting” is written in HTML and ligature icon font is applied to the text to represent gear icon.
  39. In ligature icons, alternative texts are written in HTML. For example, screen readers can read out meaningful texts.
  40. If author-specified icon fonts are not used, texts written in HTML are displayed so that users in such environment can understand them.
  41. Thus ligature icon fonts can solve two accessibility issues. Alternative texts are written in HTML and if icon fonts are not used meaningful texts are displayed.
  42. Although ligature fonts can create accessible graphics, they have some weak points. Next I will discuss those weak points and uses cense of icon fonts considering those weak points.
  43. At first let’s see use scenes of icon fonts: How? Using ligature icon fonts and texts must be written in HTML For? Texts with a little orthographic variations and non decorative images
  44. Ligature fonts can create accessible graphics, they have some weak points. At first, you need a caution with orthographic variations. Second you cannot use ligature icon fonts as decorative images. Next I will discuss those weak points.
  45. Ligature icon fonts uses ligatures –glyph corresponding a series of characters– so that specific a series of characters must be used to represent icon. For example, “setting” and “settings” are similar but different from perspective of ligatures. Sometimes “preferences” and “options” are used instead of “setting” and other languages use other words. For example, “設定” is used in Japanese. If you support those variations, you need to create ligatures for those variations.
  46. For example, ligature symbols doesn’t contain ligature for “settings” while it contains ligature for “setting”. If you use the word “setting”, you’ll see “s” after gear icon. So you’ll need a caution with orthographic variations if you use ligature icon fonts.
  47. 2nd, Ligature icon fonts cannot be used as decorative images. If you do so, texts are rendered or read out twice.
  48. Let’s consider a link that contains “gear” icon and the word “setting”. In this case, “gear” is decorative image as the word “setting” represent the purpose of link. If you use ligature icon fonts, you need two “setting” texts. The one is for “gear” icon and the other is normal texts.
  49. If the icon fonts are not used, setting rendered twice.
  50. Regardless of whether the icon fonts use PUA or ligatures, icon fonts require at least one character to render icons. You need to add one or more characters and they will be displayed or read out so that it cannot behave as img elements with null alt. You can use aria-hidden to deal with screen readers. However aria-hidden cannot solve the issue of visual renderings. This is limitation of icon fonts itself.
  51. The most important thing is providing accessible graphics for everyone. For decorative images, You can use SVG (scalable vector graphics) which look crisp in the high pixel density devices. So Let’s use right graphics in the right place.
  52. Finally, let me conclude my presentation.
  53. In the High Pixel Density Era, vector graphics are becoming more popular. Icon Fonts are one of vector graphics. There are two types of icon fonts, PUA icon fonts and ligature icon fonts. While PUA icon fonts have number of accessibility issues, ligature icon fonts can solve the issues. You can use ligatures for non-decorative icons.
  54. So my conclusion is let’s provide beautiful and accessible graphics for everyone