@@ -15,7 +15,7 @@ Web 无障碍访问 (也称为 a11y) 是指创建可供任何人都可以使用
15
15
``` vue-html
16
16
<ul class="skip-links">
17
17
<li>
18
- <a href="#main" ref="skipLink">跳到主内容 </a>
18
+ <a href="#main" ref="skipLink">Skip to main content </a>
19
19
</li>
20
20
</ul>
21
21
```
@@ -96,17 +96,17 @@ watch(
96
96
97
97
``` vue-html
98
98
<main role="main" aria-labelledby="main-title">
99
- <h1 id="main-title">主标题 </h1>
99
+ <h1 id="main-title">Main title </h1>
100
100
<section aria-labelledby="section-title">
101
- <h2 id="section-title"> 二级标题 </h2>
102
- <h3>章节小标题 </h3>
101
+ <h2 id="section-title"> Section Title </h2>
102
+ <h3>Section Subtitle </h3>
103
103
<!-- 内容 -->
104
104
</section>
105
105
<section aria-labelledby="section-title">
106
- <h2 id="section-title"> 二级标题 </h2>
107
- <h3>章节小标题 </h3>
106
+ <h2 id="section-title"> Section Title </h2>
107
+ <h3>Section Subtitle </h3>
108
108
<!-- 内容 -->
109
- <h3>章节小标题 </h3>
109
+ <h3>Section Subtitle </h3>
110
110
<!-- 内容 -->
111
111
</section>
112
112
</main>
@@ -164,7 +164,7 @@ watch(
164
164
提供标签来描述所有表单控件的用途;使 ` for ` 和 ` id ` 链接起来:
165
165
166
166
``` vue-html
167
- <label for="name">名字 </label>
167
+ <label for="name">Name </label>
168
168
<input type="text" name="name" id="name" v-model="name" />
169
169
```
170
170
@@ -179,7 +179,7 @@ watch(
179
179
180
180
``` vue-html
181
181
<label>
182
- 名字 :
182
+ Name :
183
183
<input type="text" name="name" id="name" v-model="name" />
184
184
</label>
185
185
```
@@ -192,7 +192,7 @@ watch(
192
192
你也可以为 input 框配置一个带有 [ ` aria-label ` ] ( https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-label_attribute ) 的无障碍访问名。
193
193
194
194
``` vue-html
195
- <label for="name">名字 </label>
195
+ <label for="name">Name </label>
196
196
<input
197
197
type="text"
198
198
name="name"
@@ -310,8 +310,8 @@ watch(
310
310
311
311
``` vue-html
312
312
<fieldset>
313
- <legend>使用 aria-labelledby</legend>
314
- <label id="date-label" for="date">当前日期: </label>
313
+ <legend>Using aria-labelledby</legend>
314
+ <label id="date-label" for="date">Current Date: </label>
315
315
<input
316
316
type="date"
317
317
name="date"
@@ -326,8 +326,8 @@ watch(
326
326
327
327
``` vue-html
328
328
<fieldset>
329
- <legend>使用 aria-describedby</legend>
330
- <label id="dob" for="dob">生日日期: </label>
329
+ <legend>Using aria-describedby</legend>
330
+ <label id="dob" for="dob">Date of Birth: </label>
331
331
<input type="date" name="dob" id="dob" aria-describedby="dob-instructions" />
332
332
<p id="dob-instructions">MM/DD/YYYY</p>
333
333
</fieldset>
@@ -343,9 +343,9 @@ watch(
343
343
344
344
``` vue-html
345
345
<form role="search">
346
- <label for="search" class="hidden-visually">搜索: </label>
346
+ <label for="search" class="hidden-visually">Search: </label>
347
347
<input type="text" name="search" id="search" v-model="search" />
348
- <button type="submit">搜索 </button>
348
+ <button type="submit">Search </button>
349
349
</form>
350
350
```
351
351
@@ -374,8 +374,8 @@ watch(
374
374
添加 ` aria-hidden="true" ` 在无障碍访问时被隐藏,但对其他可视用户仍然是可见的。不要在可聚焦的元素上使用它,请只在装饰性的、重复的的或屏幕外的内容上使用它。
375
375
376
376
``` vue-html
377
- <p>这里不会在屏幕助读器上被隐藏 </p>
378
- <p aria-hidden="true">这里会在屏幕助读器上被隐藏 </p>
377
+ <p>This is not hidden from screen readers. </p>
378
+ <p aria-hidden="true">This is hidden from screen readers. </p>
379
379
```
380
380
381
381
### 按钮 {#buttons}
@@ -385,11 +385,11 @@ watch(
385
385
386
386
``` vue-html
387
387
<form action="/dataCollectionLocation" method="post" autocomplete="on">
388
- <!-- Buttons -->
388
+ <!-- 按钮 -->
389
389
<button type="button">Cancel</button>
390
390
<button type="submit">Submit</button>
391
391
392
- <!-- Input buttons -->
392
+ <!-- 输入按钮 -->
393
393
<input type="button" value="Cancel" />
394
394
<input type="submit" value="Submit" />
395
395
</form>
@@ -407,7 +407,7 @@ watch(
407
407
408
408
``` vue-html
409
409
<form role="search">
410
- <label for="search" class="hidden-visually">搜索: </label>
410
+ <label for="search" class="hidden-visually">Search: </label>
411
411
<input type="text" name="search" id="search" v-model="search" />
412
412
<input
413
413
type="image"
@@ -422,11 +422,11 @@ watch(
422
422
423
423
``` vue-html
424
424
<form role="search">
425
- <label for="searchIcon" class="hidden-visually">搜索: </label>
425
+ <label for="searchIcon" class="hidden-visually">Search: </label>
426
426
<input type="text" name="searchIcon" id="searchIcon" v-model="searchIcon" />
427
427
<button type="submit">
428
428
<i class="fas fa-search" aria-hidden="true"></i>
429
- <span class="hidden-visually">搜索 </span>
429
+ <span class="hidden-visually">Search </span>
430
430
</button>
431
431
</form>
432
432
```
0 commit comments