question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

When using fade, slides are still stacked, meaning links etc on lower slides are inaccessible

See original GitHub issue

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.

Issue Analytics

  • State:open
  • Created 5 years ago
  • Reactions:3
  • Comments:7

github_iconTop GitHub Comments

14reactions
chicgeekcommented, Apr 26, 2018

Alternate CSS workaround:

.slick-slide { pointer-events: none; }
.slick-active { pointer-events: auto; }

Though I’d like to see this fixed in the core code.

6reactions
ghostcommented, Apr 5, 2018

Thanks for that. I decided it was easier just to do the following which seems to work 😃

.slick-slide.slick-active { z-index: 999; }

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found