我正在尝试使用自定义尺寸缩放中心幻灯片。但是我没办法。
请给我一些帮助吗?
https://jsfiddle.net/fbpsmu2a/2/
function init_carousel() {
$('.slider__wrapper').owlCarousel({
center: true,
items: 1,
loop: false,
autoWidth: true,
margin: 114,
nav: true,
dots: false
});
}
还有SCSS:
.slider__item {
height: 200px;
width: 200px;
background-color: red;
transition: all 0.5s ease-in-out;
}
.owl-item.active.center {
.slider__item {
height: 400px;
width: 400px;
transition: all 0.5s ease-in-out;
}
}