Skip to content

Commit dee93af

Browse files
author
Jihye Hong
committed
Add the sample about role attribute
1 parent 4013096 commit dee93af

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta name="application-name" content="inert attribute">
7+
<meta name="author" content="Jihye Hong">
8+
<link rel="stylesheet" href="spatnav-style.css">
9+
<script src="../../polyfill/spatnav-heuristic.js"></script>
10+
<link rel="stylesheet" href="https://www.w3.org/TR/wai-aria-practices/examples/tabs/css/tabs.css">
11+
</head>
12+
<body>
13+
<div class="container" style="width:600px; height:500px;">
14+
<div class="tabs" style="width: 100%; font-size: 1.5rem;">
15+
<div role="tablist" style="font-size: 1.0rem" aria-label="Entertainment">
16+
<button role="tab" aria-selected="true" aria-controls="nils-tab" id="nils">Nils Frahm</button>
17+
<button role="tab" aria-selected="false" aria-controls="agnes-tab" id="agnes" tabindex="-1">Agnes Obel</button>
18+
<button role="tab" aria-selected="false" aria-controls="complexcomplex" id="complex" tabindex="-1" data-deletable="">Joke</button>
19+
</div>
20+
21+
<div tabindex="0" role="tabpanel" id="nils-tab" aria-labelledby="nils">
22+
<p>Nils Frahm is a German musician, composer and record producer based in Berlin. He is known for combining classical and electronic music and for an unconventional approach to the piano in which he mixes a grand piano, upright piano, Roland Juno-60, Rhodes piano, drum machine, and Moog Taurus.</p>
23+
</div>
24+
25+
<div tabindex="0" role="tabpanel" id="agnes-tab" aria-labelledby="agnes" hidden="hidden">
26+
<p>Agnes Caroline Thaarup Obel is a Danish singer/songwriter. Her first album, Philharmonics, was released by PIAS Recordings on 4 October 2010 in Europe. Philharmonics was certified gold in June 2011 by the Belgian Entertainment Association (BEA) for sales of 10,000 Copies.</p>
27+
</div>
28+
29+
<div tabindex="0" role="tabpanel" id="complexcomplex" aria-labelledby="complex" hidden="hidden">
30+
<p>Fear of complicated buildings:</p>
31+
<p>A complex complex complex.</p>
32+
</div>
33+
</div>
34+
</div>
35+
<script src="https://www.w3.org/TR/wai-aria-practices/examples/tabs/tabs-1/js/tabs.js"></script>
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)