Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Owl Carousel Transitions Effect Not Working After Chrome Latest Update (V36)

i'm using the OWl carousel for a while everything were perfect but recently i faced a issue after my chrome browser update. The css transition effects are not working anymore on chrome.

But all effects working fine on firefox.

Anyone can help me..

like image 766
Karthikraja Avatar asked Aug 06 '14 06:08

Karthikraja


2 Answers

I have found the Solution friends.

Here is that..

Replacing the below line of code

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

instead of

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

This Solved My Problem. Now CSS Transitions Working Fine on All Browsers.

like image 191
Karthikraja Avatar answered Oct 21 '22 23:10

Karthikraja


In version 1.3.3 replace this:

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

in line 804 with this:

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

Then it should work out just fine!

like image 42
Henric Åkesson Avatar answered Oct 21 '22 22:10

Henric Åkesson