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

后端 未结 4 660
谎友^
谎友^ 2021-02-04 16:39

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 o

4条回答
  •  误落风尘
    2021-02-04 17:15

    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!

提交回复
热议问题