Open grigory-bogush opened 3 years ago
Still having this issue in production builds, any news?
Still having this issue in production builds, any news?
You can fix this by overriding the default css
// Note: replace fade out animaton with a transition as that
// removes flickering
.fslightbox-fade-out-strong {
animation: none;
visibility: hidden;
opacity: 0;
transition: visibility 0s 0.25s, opacity 0.25s ease;
}
If one quickly opens and closes the lightbox, sometimes fade out animation will complete but the lightbox container would still show up before disappearing again.
Present on the latest version: 1.6. Happens on Chrome but possibly other browsers.
Possible solution: Use transition instead of animation