Owl Carousel 2-autoHeight(多项)

问题描述 投票:4回答:4

目前,Owl Carousel autoHeight仅适用于屏幕上的一项。他们的计划是计算所有可见项目并根据最高项目更改高度。

我通过在可见项目上调用.active类来解决此问题,并为不可见项目设置较小的高度。是否已经有一个更优雅的解决方案?

$('.owl-carousel').owlCarousel({
loop: true,
items: 3,
margin: 1,
autoHeight: true,
});

Fiddle

有什么想法吗?谢谢!

javascript jquery height owl-carousel owl-carousel-2
4个回答
5
投票

我使用几个调用同一autoHeight-function的事件通过内部API解决了此问题。

Fiddle

jQuery部分:

$('.owl-carousel').owlCarousel({
    loop: true,
    items: 3,
    margin: 1,
    autoHeight: true,
    onInitialized: setOwlStageHeight,
    onResized: setOwlStageHeight,
    onTranslated: setOwlStageHeight
});
function setOwlStageHeight(event) {
    var maxHeight = 0;
    $('.owl-item.active').each(function () { // LOOP THROUGH ACTIVE ITEMS
        var thisHeight = parseInt( $(this).height() );
        maxHeight=(maxHeight>=thisHeight?maxHeight:thisHeight);
    });
    $('.owl-carousel').css('height', maxHeight );
    $('.owl-stage-outer').css('height', maxHeight ); // CORRECT DRAG-AREA SO BUTTONS ARE CLICKABLE
}

为了启用高度动画,我添加了以下CSS:

.owl-carousel,
.owl-stage-outer { transition: height 500ms ease-in-out 0s; }

希望有帮助。


1
投票

我用flex解决了这个问题:

 .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

owl-stage的以上代码和owl-item的以下代码:

.owl-item{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}

我希望此回复对遇到此问题的所有人有所帮助。


0
投票

我有同样的问题。我只解决了添加一个autoWidth:true的问题,现在可以使用!

我的猫头鹰脚本是:

 $('.owl-carousel').owlCarousel({
  loop: false,
  margin: 10,
  items: 1,
  autoHeight: true,
  autoWidth: true,
  nav: true,
  navText: [
    "<i class='fa fa-caret-left'></i>",
    "<i class='fa fa-caret-right'></i>"
  ],
  autoplay: true,
  autoplayHoverPause: true,
  responsive: {
    0: {
      items: 1
    },
    600: {
      items: 3
    },
    1000: {
      items: 5
    }
  }
})

0
投票

我不确定是否有人会在2020年为这个问题寻找解决方案,但是在尝试了许多无效的方法后,我发现了一个非常简单的方法。这都是关于为未激活的项目不设置高度。

例如:

.owl-item {height: 0;}    
.owl-item.active {height: auto;}

这很优雅,不需要JavaScript。您甚至可以播放过渡设置一些很酷的动画。

我希望我已经帮助了这里的人。

© www.soinside.com 2019 - 2024. All rights reserved.