Last active
January 16, 2019 18:20
-
-
Save kaseybon/b43b7abd15c355ed1b123ad1ce411936 to your computer and use it in GitHub Desktop.
Example of an interactive component using ARIA attributes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="flyout-button" | |
id="browseTopics" | |
aria-expanded="false">Browse Topic</button> | |
<div class="flyout" | |
aria-labelledby="browseTopics" | |
aria-hidden="true" >...</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="flyout-button" | |
id="browseTopics" | |
aria-expanded="true">Browse Topic</button> | |
<div class="flyout" | |
aria-labelledby="browseTopics" | |
aria-hidden="false" >...</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment