我正在使用插件:Owl Carousel

这是我正在使用的设置代码:

$("#owl-demo").owlCarousel({

navigation : true, // Show next and prev buttons
autoPlay : 5000,
singleItem:true,
transitionStyle : "fade"
});


它在Opera,Firefox和Chrome中使用“淡入淡出”过渡,但在Safari中不使用。有人以前遇到过此问题,并找到了解决问题的原因和方法吗?

最佳答案

line 804更改为owl.carousel.js

support3d = (asSupport !== null && asSupport.length === 1);




support3d = (asSupport !== null && asSupport.length > 0);


Example

关于javascript - Safari浏览器中带有渐变过渡幻灯片的OwlCarousel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31271201/

10-09 04:30