File size: 15,773 Bytes
a01128b |
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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 |
<!DOCTYPE html>
<html class="js" lang="en">
<head>
<style>
/**
* Demo styles
* Styling specific to the content and wrapping
* elements of each styled form control,
*/
html,
body {
background: #fcfcfc;
font-family: arial;
font-size: 100%;
margin: 0;
padding: 0;
}
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
line-height: 1.4;
}
a {
color: #08599B;
font-weight: bold;
}
h4, h5 {
font-size: 1.05em;
line-height: 1.2;
}
h2, h3, h4, h5, h6 {
margin-top: 2em;
}
main {
padding-top: .75em;
}
.demo > header {
border-bottom: 1px solid #aaa;
}
a:hover,
a:focus {
box-shadow: none;
outline: 2px solid;
outline-offset: 2px;
text-decoration: none;
}
pre {
background: #fdfdfd;
border: 1px solid #ccc;
max-width: 100%;
overflow: auto;
padding: .5em;
}
hr {
margin: 1.5em 0;
}
.demo-wrap {
background: #fff;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
margin: 0 auto;
max-width: 660px;
padding: 0 1.5em 3em;
overflow-x: hidden;
}
.demo-wrap__header {
background: #1a2a1a;
color: #fefefe;
margin: -1em -1.5em 0;
padding: 3em 1.5em 2em;
position: relative;
}
.demo-wrap__header a {
color: #fff;
}
.demo-wrap__header__title {
font-size: 1.3em;
margin-bottom: .5em;
margin-top: .5em;
}
.demo-details {
margin-top: 3em
}
.demo-details > h3:first-of-type {
margin-top: 0;
}
/* IE + Edge need this to treat as a block element */
details {
display: block;
}
p code {
white-space: nowrap;
}
.progress-meter-example {
margin-bottom: 2em;
}
.progress-meter-example label:after {
content: "";
display: block;
}
/**
* Shared styling among the different form controls.
* Much of these styles are pulled from normalize.css.
* Use as necessary within your own style sheets.
*/
input,
button,
textarea,
select {
border-radius: 0; /* may change, but start consistently */
box-sizing: border-box;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
line-height: normal;
margin: 0;
overflow: visible; /* show overflow in Edge */
text-transform: none; /* remove inheritance Edge, Firefox, IE */
}
/**
* Remove the Clear button added by MS browsers
*/
input::-ms-clear {
display: none;
height: 0;
width: 0;
}
/**
* Style for disabled text fields
*/
input:not([type])[disabled], input[type=text][disabled], textarea[disabled] {
opacity: .625;
}
/**
* <button> Focus Normalization:
* remove FireFox specific inner focus styles.
* focus style will be reapplied later.
*/
button::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* 1. Correct color inheritance in IE
* 2. Correct the text wrapping in Edge and IE
*/
legend {
color: inherit; /* 1 */
display: table; /* 2 */
line-height: normal;
max-width: 100%; /* 2 */
white-space: normal; /* 2 */
}
/** --------------------------------------------------------------------
ARIA Switch On / Off button
These styles have not been formatted to work with a
checkbox that has been modified into a role=switch, and
presently require a parent / child relationship, rather than
a sibling relationship as a "checkbox + element" would provide.
--------------------------------------------------------------------- */
.on-off-switch {
align-items: center;
color: #111;
cursor: default;
display: flex;
font-weight: normal;
justify-content: space-between;
}
/* hover/focus is applied to the span within instead */
.on-off-switch:hover,
.on-off-switch:focus {
outline: 0;
}
.on-off-switch span {
background: #eaeaea;
border-radius: 2px;
border: 1px solid;
display: inline-block;
outline-offset: 0px;
outline: 0px solid;
padding: .25rem;
pointer-events: none;
position: relative;
}
.on-off-switch span:before,
.on-off-switch span:after {
border-radius: 2px;
color: #4a4a4a;
display: inline-block;
min-width: 5ch;
text-align: center;
}
.on-off-switch span:before {
content: "Off";
}
.on-off-switch span:after {
content: "On";
}
.on-off-switch[disabled] span:before,
.on-off-switch[disabled] span:after,
.on-off-switch[aria-disabled="true"] span:before,
.on-off-switch[aria-disabled="true"] span:after {
opacity: .65;
pointer-events: none;
}
.on-off-switch:not([data-keep-disabled]):hover span,
.on-off-switch:not([data-keep-disabled]):focus span {
background: #fff;
outline: 2px solid #2196f3;
outline-offset: 2px;
}
.on-off-switch[aria-checked="false"] span:before,
.on-off-switch[aria-checked="true"] span:after {
color: #fff;
margin: 0;
}
.on-off-switch[aria-checked="false"] span:before {
background: #222;
outline: 1px solid #222;
}
.on-off-switch[aria-checked="true"] span:after {
background: green;
outline: 1px solid green;
}
/** --------------------------------------------------------------------
ARIA Switch Toggle Button
--------------------------------------------------------------------- */
.switch-toggle {
background: none;
border: none;
cursor: default;
display: block;
font-size: inherit;
line-height: 1;
margin: 1em 0 0;
padding: .5em 0;
position: relative;
text-align: left;
transition: box-shadow .2s ease-in-out;
width: 100%;
}
.switch-toggle:focus {
outline: none;
}
/* negate 'flash' of text color when pressing a button in some browsers */
.switch-toggle:active {
color: inherit;
}
/* using the before/after pseudo elements of the span to create the "switch" */
.switch-toggle span:before,
.switch-toggle span:after {
border: 1px solid #565656;
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
}
/* styling specific to the knob of the switch */
.switch-toggle span:after {
background: #fff;
border-radius: 100%;
height: 1.5em;
right: 1.5em;
transition: right .1825s ease-in-out;
width: 1.5em;
}
/* styling specific to the knob "container" */
.switch-toggle span:before {
background: #eee;
border-radius: 1.75em;
height: 1.75em;
right: .25em;
transition: background .2s ease-in-out;
width: 2.75em;
}
.switch-toggle span {
pointer-events: none;
}
.switch-toggle:not([data-keep-disabled]):hover span:before,
.switch-toggle:not([data-keep-disabled]):focus span:before {
outline: 2px solid #2196f3;
outline-offset: 2px;
}
/* change the position of the knob to indicate it has been checked*/
.switch-toggle[aria-checked="true"] span:after {
right: .25em;
}
/* update the color of the "container" to further visually indicate state */
.switch-toggle[aria-checked="true"] span:before {
background: #2196f3;
}
.switch-toggle[disabled] span,
.switch-toggle[aria-disabled="true"] span {
opacity: .65;
}
/**
* Toggle switch modifications for displaying On/Off labels
*/
.switch-toggle .show-labels:before {
content: "Off";
color: rgba(10, 10, 10, 1);
line-height: 1.6;
text-indent: 1.625em;
width: 3.5em;
}
.switch-toggle[aria-checked="false"] .show-labels:after {
right: 2.2em;
}
.switch-toggle[aria-checked="true"] .show-labels:before {
color: rgba(255 ,255 ,255 ,1);
content: "On";
text-indent: .25em;
text-shadow: 0 0 1px #000;
}
@media screen and (-ms-high-contrast: active) {
.switch-toggle span:after {
background-color: windowText;
}
}
/* containing label */
.check-switch {
display: block;
overflow: hidden;
padding: .5em 0;
position: relative;
}
/* using the before/after pseudo elements of the span to create the "switch" */
.check-switch span:before,
.check-switch span:after {
border: 1px solid #565656;
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
}
/* styling specific to the knob of the switch */
.check-switch span:after {
background: #fff;
border-radius: 100%;
height: 1.5em;
right: 1.5em;
transition: right .1825s ease-in-out;
width: 1.5em;
}
/* styling specific to the knob "container" */
.check-switch span:before {
background: #eee;
border-radius: 1.75em;
height: 1.75em;
right: .25em;
transition: background .2s ease-in-out;
width: 2.75em;
}
/* hide the actual checkbox from view, but not from keyboards or ATs.
Instead of standard visually hidden styling, instead set opacity to
to 0 and set to full height/width of container element so that VO focus
ring outlines the component, instead of a tiny box within the component.
This will also allow for the checkbox input to be discovered if someone
were to search by touch.
*/
.check-switch input {
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 100%;
}
.check-switch input:disabled + span,
.check-switch input[aria-disabled="true"] + span {
opacity: .65;
}
.check-switch:hover input:not([data-keep-disabled]) + span:before,
.check-switch input:not([data-keep-disabled]):focus + span:before {
outline: 2px solid #2196f3;
outline-offset: 2px;
}
/* change the position of the knob to indicate it has been checked*/
.check-switch input:checked + span:after {
right: .25em;
}
/* update the color of the "container" to further visually indicate state */
.check-switch input:checked + span:before {
background: #2196f3;
}
/* 'color in' the switch knob in high contrast mode by giving it
a large border */
@media screen and (-ms-high-contrast: active) {
.check-switch span:after {
background-color: windowText;
}
}
</style>
<meta charset="utf-8">
<title>
ARIA Switch Controls
</title>
<meta content="width=device-width, initial-scale=1" name="viewport">
</head>
<body id="body">
<div class="demo-wrap" id="page">
<header class="demo-wrap__header">
<p class="demo-wrap__header__title">
Accessible Styled Form Controls
</p>
<nav>
<a>
See source on GitHub
</a>
,
<a>
Index of styled form controls
</a>
</nav>
</header>
<main aria-label="Content">
<div class="demo">
<div>
<h1>
<abbr title="Accessible Rich Internet Applications">
ARIA
</abbr>
Switch Demos
</h1>
<p>
Published:
<span>
March 20, 2017
</span>
</p>
<p>
Last updated:
<span>
January 23, 2022
</span>
</p>
</div>
<h2>
Pattern Demos
</h2>
<p>
<code>
<button>
</code>
base
</p>
<button aria-checked="false" class="switch-toggle" data-switch data-switch-labels role="switch" type="button">
Enable dark mode
<span aria-hidden="true" class="show-labels">
</span>
</button>
<p>
<code>
<span>
</code>
base
</p>
<span aria-checked="false" class="switch-toggle" data-switch role="switch" tabindex="0">
Enable dark mode (no visible state labels)
<span aria-hidden="true">
</span>
</span>
<p>
<code>
<input type=checkbox>
</code>
base
</p>
<label class="check-switch">
<input data-keep-disabled data-switch disabled role="switch" type="checkbox">
Enable dark mode (disabled example)
<span aria-hidden="true">
</span>
</label>
<p>
<code>
<div>
</code>
base
</p>
<div aria-checked="false" class="on-off-switch" data-switch id="enabler" role="switch" tabindex="0">
Enable the next switch
<span aria-hidden="true">
</span>
</div>
<p>
<code>
<a>
</code>
base
</p>
<a aria-checked="false" aria-disabled="true" class="on-off-switch" data-keep-disabled data-switch id="target" role="switch" tabindex="-1">
Enable something else
<span aria-hidden="true">
</span>
</a>
<section class="demo-details">
<h3>
Pattern Details
</h3>
<details>
<summary>
Pattern Markup (before script runs)
</summary>
<pre><code><button data-switch
type="button"
class="switch-toggle"
data-switch-labels
disabled
>
Dark mode
</button>
<span data-switch class="switch-toggle" hidden>
Dark mode (no visible state labels)
</span>
<label class="check-switch">
<input type="checkbox" data-switch data-keep-disabled disabled>
Enable dark mode
</label>
<div class="on-off-switch" data-switch id="enabler" hidden>
Enable the next switch
</div>
<a id="target"
data-keep-disabled
aria-disabled="true"
class="on-off-switch"
data-switch
>
Enable something else
</a></code></pre>
</details>
<details>
<summary>
Pattern Markup (after script runs)
</summary>
<pre><code><button data-switch
type="button"
class="switch-toggle"
data-switch-labels
role="switch"
aria-checked="false"
>
Dark mode
<span aria-hidden="true" class="show-labels"></span>
</button>
<span data-switch
class="switch-toggle"
role="switch"
tabindex="0"
aria-checked="false"
>
Dark mode (no visible state labels)
<span aria-hidden="true"></span>
</span>
<label class="check-switch">
<input type="checkbox"
data-switch
data-keep-disabled
disabled
role="switch"
>
Enable dark mode
<span aria-hidden="true"></span>
</label>
<div class="on-off-switch"
data-switch
id="enabler"
role="switch"
tabindex="0"
aria-checked="false"
>
Enable the next switch
<span aria-hidden="true"></span>
</div>
<a id="target"
data-keep-disabled
aria-disabled="true"
class="on-off-switch"
data-switch
role="switch"
tabindex="-1"
aria-checked="false"
>
Enable something else
<span aria-hidden="true"></span>
</a></code></pre>
</details>
<p>
A switch is meant to function similarly to a checkbox or toggle button, but assistive technologies are meant to announce it in a manner that is consistent with its on-screen appearance as an on/off sort of UI component.
</p>
<p>
This particular pattern uses a
<code>
<button>
</code>
as the base element that is then modified into a
<code>
role="switch"
</code>
with JavaScript. When a
<code>
<button>
</code>
is modified to be exposed as a
<code>
switch
</code>
, the
<code>
aria-checked
</code>
attribute needs to be added, and managed, to appropriately convey the current state to assistive technologies (AT).
</p>
<p>
For more information about switches and how AT, such as screen readers, interpret them, please review
<a>
the checkbox switch pattern
</a>
.
</p>
<p>
For more information on the JavaScript and markup used, please see the
<a>
ReadMe on the GitHub repo for this pattern
</a>
.
</p>
<h4>
Usage note
</h4>
<p>
Presently there are
<a>
inconsistencies with screen readers and ARIA switches
</a>
.
Please review them to understand how the role is treated depending on screen reader and browser pairings, and if there are any gaps you may need to consider when considering the use of this role.
</p>
</section>
<h3>
Continue reading
</h3>
<p>
For more information about switches, please read the
<a>
<abbr>
ARIA
</abbr>
specification for the
<code>
switch
</code>
role
</a>
.
<a>
Inclusive Components Toggle Buttons, by Heydon Pickering
</a>
.
</p>
</div>
</main>
</div>
</body>
</html>
|