-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
216 lines (120 loc) · 7.7 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Yan and Coffee's Blog</title>
<icon>https://www.yanandcoffee.com/icon.png</icon>
<subtitle>on all things frontend related that make a better user experience</subtitle>
<link href="/atom.xml" rel="self"/>
<link href="https://www.yanandcoffee.com/"/>
<updated>2020-08-11T03:57:33.348Z</updated>
<id>https://www.yanandcoffee.com/</id>
<author>
<name>Yan Li</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>Button vs Div for Accessibility</title>
<link href="https://www.yanandcoffee.com/2020/08/10/button-vs-div/"/>
<id>https://www.yanandcoffee.com/2020/08/10/button-vs-div/</id>
<published>2020-08-10T05:15:47.000Z</published>
<updated>2020-08-11T03:57:33.348Z</updated>
<summary type="html">
A TLDR; post on the pros/cons of using a <button> vs <div role="button">.
</summary>
<category term="accessibility" scheme="https://www.yanandcoffee.com/tags/accessibility/"/>
<category term="a11y" scheme="https://www.yanandcoffee.com/tags/a11y/"/>
<category term="javascript" scheme="https://www.yanandcoffee.com/tags/javascript/"/>
<category term="React" scheme="https://www.yanandcoffee.com/tags/React/"/>
<category term="buttons" scheme="https://www.yanandcoffee.com/tags/buttons/"/>
</entry>
<entry>
<title>Creating a <SkipLinks /> Component</title>
<link href="https://www.yanandcoffee.com/2020/07/05/skip-links/"/>
<id>https://www.yanandcoffee.com/2020/07/05/skip-links/</id>
<published>2020-07-05T18:04:17.000Z</published>
<updated>2020-08-11T03:57:33.348Z</updated>
<summary type="html">
An easy, reusable solution for adding skip navigation links to all your React apps
</summary>
<category term="accessibility" scheme="https://www.yanandcoffee.com/tags/accessibility/"/>
<category term="React" scheme="https://www.yanandcoffee.com/tags/React/"/>
<category term="skip links" scheme="https://www.yanandcoffee.com/tags/skip-links/"/>
<category term="hooks" scheme="https://www.yanandcoffee.com/tags/hooks/"/>
</entry>
<entry>
<title>Accessibility Is Not a Project to Be Completed</title>
<link href="https://www.yanandcoffee.com/2020/06/21/accessibility-is-not-a-project-to-be-completed/"/>
<id>https://www.yanandcoffee.com/2020/06/21/accessibility-is-not-a-project-to-be-completed/</id>
<published>2020-06-21T21:00:47.000Z</published>
<updated>2020-08-11T03:57:33.244Z</updated>
<summary type="html">
It's more than just tickets in the backlog. You're not solving for accessibility if you treat it like a project.
</summary>
<category term="accessibility" scheme="https://www.yanandcoffee.com/tags/accessibility/"/>
<category term="a11y" scheme="https://www.yanandcoffee.com/tags/a11y/"/>
<category term="community" scheme="https://www.yanandcoffee.com/tags/community/"/>
<category term="non-technical" scheme="https://www.yanandcoffee.com/tags/non-technical/"/>
</entry>
<entry>
<title>Accessible Modals, Part 2 - Focus Trap! Key Events!</title>
<link href="https://www.yanandcoffee.com/2020/06/06/accessible-modals-part-2/"/>
<id>https://www.yanandcoffee.com/2020/06/06/accessible-modals-part-2/</id>
<published>2020-06-06T07:20:00.000Z</published>
<updated>2020-08-11T03:57:33.336Z</updated>
<summary type="html">
In this continuation, you'll learn how to create a focus trap within your dialog modal to keep track of key events that allow keyboard users to access your perfectly designed modal.
</summary>
<category term="accessibility" scheme="https://www.yanandcoffee.com/tags/accessibility/"/>
<category term="a11y" scheme="https://www.yanandcoffee.com/tags/a11y/"/>
<category term="keyboard" scheme="https://www.yanandcoffee.com/tags/keyboard/"/>
<category term="modals" scheme="https://www.yanandcoffee.com/tags/modals/"/>
<category term="focus management" scheme="https://www.yanandcoffee.com/tags/focus-management/"/>
<category term="javascript" scheme="https://www.yanandcoffee.com/tags/javascript/"/>
<category term="React" scheme="https://www.yanandcoffee.com/tags/React/"/>
<category term="refs" scheme="https://www.yanandcoffee.com/tags/refs/"/>
</entry>
<entry>
<title>Accessible Modals, Part 1 - Its Issues and the Solutions</title>
<link href="https://www.yanandcoffee.com/2020/05/26/accessible-modals/"/>
<id>https://www.yanandcoffee.com/2020/05/26/accessible-modals/</id>
<published>2020-05-26T03:25:00.000Z</published>
<updated>2020-06-05T08:12:00.000Z</updated>
<summary type="html">
Modals are a pretty common pattern in UI/UX design, but they also come with a lot of accessibility concerns if done incorrectly. Here's how you can do it right.
</summary>
<category term="accessibility" scheme="https://www.yanandcoffee.com/tags/accessibility/"/>
<category term="a11y" scheme="https://www.yanandcoffee.com/tags/a11y/"/>
<category term="modals" scheme="https://www.yanandcoffee.com/tags/modals/"/>
<category term="focus management" scheme="https://www.yanandcoffee.com/tags/focus-management/"/>
<category term="javascript" scheme="https://www.yanandcoffee.com/tags/javascript/"/>
<category term="React" scheme="https://www.yanandcoffee.com/tags/React/"/>
<category term="refs" scheme="https://www.yanandcoffee.com/tags/refs/"/>
<category term="tabindex" scheme="https://www.yanandcoffee.com/tags/tabindex/"/>
</entry>
<entry>
<title>Accessible Navigation With Smooth Scrolling + Focus Management</title>
<link href="https://www.yanandcoffee.com/2020/05/08/accessible-smooth-scrolling-and-focus-management-solutions/"/>
<id>https://www.yanandcoffee.com/2020/05/08/accessible-smooth-scrolling-and-focus-management-solutions/</id>
<published>2020-05-08T23:31:12.000Z</published>
<updated>2020-08-11T03:57:33.340Z</updated>
<summary type="html">
Ever wonder how your users can navigate to a section smoothly and not lose their keyboard focus?
</summary>
<category term="accessibility" scheme="https://www.yanandcoffee.com/tags/accessibility/"/>
<category term="a11y" scheme="https://www.yanandcoffee.com/tags/a11y/"/>
<category term="focus management" scheme="https://www.yanandcoffee.com/tags/focus-management/"/>
<category term="javascript" scheme="https://www.yanandcoffee.com/tags/javascript/"/>
<category term="React" scheme="https://www.yanandcoffee.com/tags/React/"/>
<category term="scrolling" scheme="https://www.yanandcoffee.com/tags/scrolling/"/>
<category term="css" scheme="https://www.yanandcoffee.com/tags/css/"/>
</entry>
<entry>
<title>Hi, My Name Is Yan!</title>
<link href="https://www.yanandcoffee.com/2020/05/07/Hi-My-Name-is-Yan/"/>
<id>https://www.yanandcoffee.com/2020/05/07/Hi-My-Name-is-Yan/</id>
<published>2020-05-07T02:17:40.000Z</published>
<updated>2020-08-11T03:57:33.244Z</updated>
<summary type="html">
<p>I’m just going to briefly introduce myself and Coffee here. The logo of this blog is a drawing of my dog, Coffee. This blog was started
</summary>
</entry>
</feed>