-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
When using fade, slides are still stacked, meaning links etc on lower slides are inaccessible #1167
Comments
I had the same issue just yesterday. I made this component as a workaround:
By wrapping that around whatever elements needed to be clickable, they would "elevated" when that carousel slide was active and thus clickable. Bit hacky, but it works until a proper fix gets implemented. (Of course, you'll need some sort of implementation to pass the appropriate CSS |
Thanks for that. I decided it was easier just to do the following which seems to work :)
|
Alternate CSS workaround:
Though I'd like to see this fixed in the core code. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I have the same problem and I think the @chicgeek solution is the right one to avoid conflicts with other elements z-index. |
This is still happening but thanks chicgeek |
This issue has reappeared after being fixed previously: #852. |
When using the fade options, slides are not actually set to
display: none
their visibility and opacity is just altered. This means that which ever slide is last in the list is the one which is actually clickable. For example, create a slideshow of images with links - https://codesandbox.io/s/7j6j388070 - No matter which slide is shown, you can only ever get to the link on the last slide.Once a slide isn't visible it needs it's
display
property changing so it doesn't affect the other slides and sit on top of them.The text was updated successfully, but these errors were encountered: