javascript - OwlCarousel with Fade Transition Slides in Safari Browser -
i'm using plugin: owl carousel
here set code i'm using:
$("#owl-demo").owlcarousel({ navigation : true, // show next , prev buttons autoplay : 5000, singleitem:true, transitionstyle : "fade" }); it uses "fade" transition in opera, firefox , chrome, not in safari. has encountered before , found reason , way fix it?
change line 804 owl.carousel.js:
support3d = (assupport !== null && assupport.length === 1); to
support3d = (assupport !== null && assupport.length > 0);
Comments
Post a Comment