This is a (multiple allowed):
Autoplay works when i use some other effect, like flip, cube, etc
Code: var Swiper = require('swiper');
$('.fss').each(function(){
window.fss = new Swiper.default($(this), {
effect: 'fade',
fadeEffect: {
crossFade: false,
},
direction: 'horizontal',
loop: true,
speed: 500,
autoplay: true,
keyboard:
{
enabled: true,
onlyInViewport: false,
},
autoplayDisableOnInteraction: false,
slidesPerView: 1,
spaceBetween: 0,
mousewheel: false,
});
});
What I hope is that I do an autoplay with the fade effect.
The application starts, appearce the first slide, then swipe to the next slide but there it stops and stays.
Running into this issue with v5.4.1 as well.
Edit: I resolved this issue with the answer in #3408
I had to hack a fix as well. It seems .swiper-slide-active is not applying opacity: 1. I added this to my stylesheet manually and fade now works.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
Running into this issue with v5.4.1 as well.
Edit: I resolved this issue with the answer in #3408