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); 

example


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -