When using fade, slides are still stacked, meaning links etc on lower slides are inaccessible
See original GitHub issueWhen 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.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:7
Top Results From Across the Web
Change the order in which stacked objects, placeholders ...
To reorder objects on a slide, right-click the object (or set of grouped objects), and then click Bring to Front or Send to...
Read more >slideshow not fading after another enters - css
I think you want to show one image per slide so you should set your slider prop: items to show to 1, this...
Read more >Safari Technology Preview Release Notes
Preview the new type of phishing-resistant credential that makes signing in to websites safer and easier. Available through Safari's WebAuthn platform ...
Read more >Tahoe/Suburban Owner's Manual - Dealer E Process
mean. See the features in this manual for information. ... Starting the Vehicle with a Low Remote. Key Battery ... less likely to...
Read more >OSHA Technical Manual (OTM) - Section III: Chapter 5
Additionally, for the same sound pressure level, high-frequency noise is much more disturbing and more capable of producing hearing loss than low-frequency ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Alternate CSS workaround:
Though I’d like to see this fixed in the core code.
Thanks for that. I decided it was easier just to do the following which seems to work 😃
.slick-slide.slick-active { z-index: 999; }