-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckbox-togglebutton.html
More file actions
21 lines (21 loc) · 1.01 KB
/
Copy pathcheckbox-togglebutton.html
File metadata and controls
21 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>aria toggle button from checkbox</title>
</head>
<body>
<div class="toggle">
<div class="toggledescription" role="presentation">Finance cards</div>
<div class="outlineplaceholder">
<input type="checkbox" id="mastertoggle" checked="checked" class="toggleinput" aria-pressed="true" role="button" aria-labelledby="mastertoggle_screenreaderhint">
<label for="mastertoggle" class="toggleonlabel" role="presentation">
<svg class="toggleonicon" focusable="false" role="presentation">…</svg>On
</label>
<label for="mastertoggle" class="toggleofflabel">
<svg class="toggleofficon" focusable="false" role="presentation">…</svg>
<svg class="toggleoffpressedicon" focusable="false" role="presentation">…</svg>Off
</label>
<span role="tooltip" id="mastertoggle_screenreaderhint" class="screenreaderhint">, Finance cards</span>
</div>
</div>
</body>
</html>