My slider below doesn't seem to be working properly. There's a glitch when transitioning from one slide to the other. Here's my code: https://jsfiddle.net/tiffsaw/6y5Ltvev/
Any help would be extremely appreciated. Thank you so much!
$(document).ready(function(){
$('.slides').first().addClass('active');
$('.slides').hide();
$('.active').show();
$('.right').click(function(){
$('.active').removeClass('active').addClass('oldActive');
if ( $('.oldActive').is(':last-child')) {
$('.slides').first().addClass('active');
}
else{
$('.oldActive').next().addClass('active');
}
$('.oldActive').removeClass('oldActive');
$('.slides').fadeOut();
$('.active').fadeIn();
});
});
This is happening because the
$('.slides').fadeOut();
and the$('.active').fadeIn();
are happening at the same time. Before one of the slides completely fades out, the other one will interrupt the fade out and then fade in.I fixed it by simply adding a delay to the fade out, like this:
This will make the fade in wait 500 milliseconds before actually triggering, allowing the fade out to happen. Here is a fiddle which shows this.