猫头鹰旋转木马2动画不工作在chrome最新版本(V52)



我使用的是owl carousel版本2.0.0与animate.css的渐隐和渐隐效果,它不工作在chrome最新版本52.0.2743.116

下面是我用来渐变项目的脚本:

$('.owl-carousel').owlCarousel({    
    //loop:true,
    margin:10,
    nav:true,
    items:1,    
    animateIn: 'fadeIn',
    animateOut: 'fadeOut',
    mouseDrag: false,
   touchDrag: false,
    responsive:{
        0:{
            items:1
        },
        600:{
            items:1
        },
        1000:{
            items:1
        }
    }
})

为此,您需要在下面添加css。

.owl-carousel .owl-wrapper-outer{
       overflow: hidden;
       position: relative;
       width: 100%;
       z-index: 1;  // added this
}
.owl-item { 
     transform: translateZ(0);
     -webkit-transform: translateZ(0); 
     -ms-transform: translateZ(0);
 }

相关内容

  • 没有找到相关文章

最新更新