我只想显示多行并带有猫头鹰点。像这样
但是似乎对此没有内在的选择。所以我尝试给
.owl-item {
width: 20%;
}
,因此它将排成5个项目。但这根本没有用。我认为将应用插件样式。
这是小提琴。 https://jsfiddle.net/7mt5aL2x/
有解决方案吗?
答案 0 :(得分:2)
使用flex
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
items:1,
nav: true
})
.owl-carousel .item {
background: #4DC7A0;
padding: 1rem;
}
body{
padding: 10px;
}.flex-container {
display: flex;
flex-wrap: nowrap;
background-color: DodgerBlue;
}
.flex-container > div {
background-color: #f1f1f1;
width: 100px;
margin: 10px;
text-align: center;
line-height: 75px;
font-size: 30px;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.2.1/assets/owl.carousel.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.2.1/owl.carousel.min.js"></script>
<div class="owl-carousel owl-theme">
<div class="item">
<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
</div>
<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
</div>
</div>
<div class="item">
<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
</div>
<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
</div>
</div>
</div>
答案 1 :(得分:2)
您可以在一个项目中添加多个对象,并修改css以使其更长:
<div class="owl-carousel owl-theme">
<div class="item"><h4>1</h4><h4>2</h4></div>
<div class="item"><h4>3</h4><h4>4</h4></div>
<div class="item"><h4>5</h4><h4>6</h4></div>
<div class="item"><h4>7</h4><h4>8</h4></div>
<div class="item"><h4>9</h4><h4>10</h4></div>
</div>
答案 2 :(得分:2)
由于我需要一个项目的真正的响应式多行猫头鹰转盘(这意味着它使所有窗口大小的幻灯片保持有序排列),因此我在最初搜索时偶然发现了这个问题,但没有发现真正的帮助或完整的答案。
所以我自己实现了它,并认为它仍然可以为您或将来的其他人提供帮助,因此我设置了 codepen :https://codepen.io/Tolc/pen/OJXyKpo
它实现的基本上是这种响应式轮播:
desktop tablet mobile
cols: 3, rows: 2 cols: 2, rows: 3 cols: 1, rows: 2
1 2 3 -> 7 8 9 1 2 -> 7 8 1 -> 3 -> ...
4 5 6 10... 3 4 9 10 2 4
5 6 ...
这只是一个示例,代码可用于任意数量的列和行以及任何断点。
基本原理与其他答案相同:注入充当列的包装div。但是我的实现处理了响应性,因此您不会失去Owl Carousel的任何功能。
HTML如下所示(唯一重要的部分是 data-slide-index 属性):
<div class="owl-carousel owl-theme">
<div class="slide" data-slide-index="0">1</div>
<div class="slide" data-slide-index="1">2</div>
<div class="slide" data-slide-index="2">3</div>
...
</div>
整个js有点长,但是在这里(我试图评论一些有趣的部分):
$(document).ready(function() {
var el = $('.owl-carousel');
var carousel;
var carouselOptions = {
margin: 20,
nav: true,
dots: true,
slideBy: 'page',
responsive: {
0: {
items: 1,
rows: 2 //custom option not used by Owl Carousel, but used by the algorithm below
},
768: {
items: 2,
rows: 3 //custom option not used by Owl Carousel, but used by the algorithm below
},
991: {
items: 3,
rows: 2 //custom option not used by Owl Carousel, but used by the algorithm below
}
}
};
//Taken from Owl Carousel so we calculate width the same way
var viewport = function() {
var width;
if (carouselOptions.responsiveBaseElement && carouselOptions.responsiveBaseElement !== window) {
width = $(carouselOptions.responsiveBaseElement).width();
} else if (window.innerWidth) {
width = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientWidth) {
width = document.documentElement.clientWidth;
} else {
console.warn('Can not detect viewport width.');
}
return width;
};
var severalRows = false;
var orderedBreakpoints = [];
for (var breakpoint in carouselOptions.responsive) {
if (carouselOptions.responsive[breakpoint].rows > 1) {
severalRows = true;
}
orderedBreakpoints.push(parseInt(breakpoint));
}
//Custom logic is active if carousel is set up to have more than one row for some given window width
if (severalRows) {
orderedBreakpoints.sort(function (a, b) {
return b - a;
});
var slides = el.find('[data-slide-index]');
var slidesNb = slides.length;
if (slidesNb > 0) {
var rowsNb;
var previousRowsNb = undefined;
var colsNb;
var previousColsNb = undefined;
//Calculates number of rows and cols based on current window width
var updateRowsColsNb = function () {
var width = viewport();
for (var i = 0; i < orderedBreakpoints.length; i++) {
var breakpoint = orderedBreakpoints[i];
if (width >= breakpoint || i == (orderedBreakpoints.length - 1)) {
var breakpointSettings = carouselOptions.responsive['' + breakpoint];
rowsNb = breakpointSettings.rows;
colsNb = breakpointSettings.items;
break;
}
}
};
var updateCarousel = function () {
updateRowsColsNb();
//Carousel is recalculated if and only if a change in number of columns/rows is requested
if (rowsNb != previousRowsNb || colsNb != previousColsNb) {
var reInit = false;
if (carousel) {
//Destroy existing carousel if any, and set html markup back to its initial state
carousel.trigger('destroy.owl.carousel');
carousel = undefined;
slides = el.find('[data-slide-index]').detach().appendTo(el);
el.find('.fake-col-wrapper').remove();
reInit = true;
}
//This is the only real 'smart' part of the algorithm
//First calculate the number of needed columns for the whole carousel
var perPage = rowsNb * colsNb;
var pageIndex = Math.floor(slidesNb / perPage);
var fakeColsNb = pageIndex * colsNb + (slidesNb >= (pageIndex * perPage + colsNb) ? colsNb : (slidesNb % colsNb));
//Then populate with needed html markup
var count = 0;
for (var i = 0; i < fakeColsNb; i++) {
//For each column, create a new wrapper div
var fakeCol = $('<div class="fake-col-wrapper"></div>').appendTo(el);
for (var j = 0; j < rowsNb; j++) {
//For each row in said column, calculate which slide should be present
var index = Math.floor(count / perPage) * perPage + (i % colsNb) + j * colsNb;
if (index < slidesNb) {
//If said slide exists, move it under wrapper div
slides.filter('[data-slide-index=' + index + ']').detach().appendTo(fakeCol);
}
count++;
}
}
//end of 'smart' part
previousRowsNb = rowsNb;
previousColsNb = colsNb;
if (reInit) {
//re-init carousel with new markup
carousel = el.owlCarousel(carouselOptions);
}
}
};
//Trigger possible update when window size changes
$(window).on('resize', updateCarousel);
//We need to execute the algorithm once before first init in any case
updateCarousel();
}
}
//init
carousel = el.owlCarousel(carouselOptions);
});
完整的codepen可以显示其作用:https://codepen.io/Tolc/pen/OJXyKpo
答案 3 :(得分:1)
只要创建网格并将其放置在视频项中,就可以了。
这就是我制作两行视频轮播的方式。
<div class="video-carousel-container container">
<div class="row slider-carousel-video owl-carousel">
@foreach ($videos as $item)
<div class="video-item col-lg-4 col-md-4 col-xs-1">
<iframe width="320" height="185" src="https://www.youtube.com/embed/{{$item->video}}" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
<iframe width="320" height="185" src="https://www.youtube.com/embed/{{$item->video}}" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</div>
@endforeach
</div>