-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Accessibility #32
Comments
Hi @freddi301 --
Personally I've only ever tested using VoiceOver for macOS which is more than capable of navigating the content in the carousel. I've found it's best to simply hide the controls from screen readers as they aren't essential to navigation -- a user can just scroll using whatever input they prefer (mouse, trackpad, touch, screen reader etc.) -- in fact, without additional markup they just confuse screen readers in my experience. e.g. <div aria-hidden>
<PrevButton />
<Pagination />
<NextButton />
</div> |
would you add an accessibility tips section to the readme? just copy pasting your answer is enough IMHO. |
my understanding is that focusable elements (or elements that contain focusable elements) shouldn't use it also appears it could be considered a level A violation (4.2.1) one way to get around this could be to set the buttons and pagination to |
@jonmilner yeah I recall coming across the issue with I guess my original advice of adding It might be worth trying to make the controls accessible -- ultimately, I think you'd need to make sure the screen reader knows which elements in the list have become active as a result of navigating using the controls. I wonder if adding |
Hi, this component is exactly what I need. But is it accessible?
The text was updated successfully, but these errors were encountered: