Accessibility - Edge Screen Reader #308
Unanswered
alinasavin
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hei there. I am using your plugin to build my carousel component in vue 3. I have some issues with accessibility and was wondering if anyone would know the fix.
I have my carousel component and inside the carousel item I am rendering a banner component. The issues that I am having is that the screen reader is skipping everything that is inside the carousel and my carousel additions. I am using my own custom navigation.
Code for carousel:
`
Code for Testimonial banner that is rendered inside the carousel_item:
`
Code for custom navigation:
<div class="container d-flex justify-content-center align-items-center carousel-additions" :style="[
transform: translateY(${offset}px),
height: ${height}px`]"><button ref="previousHoverElement" @click="prev" class="d-flex justify-content-center align-items-center position-relative" aria-labelledby="prev-button" aria-label="Navigate to previous slide">
I am not sure what will be the issues. I am also using the carousel to load some testimonial cards and the screen reader is skipping those as well. Is there a variable/settings I am missing here I should add to have this accessibility working? Or is this something that is not supported. Any advice will be much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions