When you use autoplay and animation fade styles, you will get a white flicker between the last and first element when using a loop.
var owl = $('.owl-carousel');
owl.owlCarousel({
items: 1,
loop: true,
autoplay: true,
autoplayTimeout: 3500,
autoplayHoverPause: true,
transitionStyle: 'fade',
animateIn: 'fadeIn',
animateOut: 'fadeOut'
});
What if you put this on the 'owl-item': transform: translate3d(0, 0, 0);
I tested the slider with above settings and experienced the same problem. Using my solution (mentioned above) the problem is fixed :)
I can confim the issue and the solution. Thanks for that.
+1 (issue & solution)
I experienced the same issue.
Thanks for the solution!
+1 for both issue and solution
Thanks, this worked for as well!
+1 for both !! Thanks @gideonheilbron
For me custom transition is not working between last and first slide in owl carousel kindly help me to solve this issue
i'm using version 2.0 and in that i'm using center mode
'owl-item': transform: translate3d(0, 0, 0);
i tried this but it's not working good for me
This fix is not for the issue you are currently experiencing. I suggest opening a new issue.
Most helpful comment
What if you put this on the 'owl-item': transform: translate3d(0, 0, 0);