I've created a basic lightbox popup in CSS and I'm trying to implement a better open/close animation in JS, but I'm not sure how. I've looked around, but couldn't find much specifically for this, but rather entire JS solutions. I'm using .fadeToggle
, but it's not very smooth.
Here's my markup:
<div class="popup-overlay"></div>
<div class="popup">
<span class="close-button">
<div class="menu-bar menu-bar-top"></div>
<div class="menu-bar menu-bar-bottom"></div>
</span>
<div>
<h2>Heading</h2>
<div>
<p>Content</p>
</div>
</div>
</div>
jQuery:
$('.popup .close-button, .popup-overlay').on('click', function() {
$('.popup').fadeToggle('fast');
$('.popup-overlay').fadeToggle('fast');
});
This was a challenge for me, because I've only ever written lightboxes in native javascript before, never in jQuery.
I tried to do something with the jquery animations
.fadeIn()
,.fadeOut()
and.delay()
, but in the end, as you see, I went back to CSStransition: opacity
and javascriptsetTimeout()
.