gpt4 book ai didi

javascript - 光滑的 slider 在 flex 容器中不起作用

转载 作者:可可西里 更新时间:2023-11-01 12:58:17 25 4
gpt4 key购买 nike

我正试图在一列中垂直居中一个光滑的旋转木马 ( http://kenwheeler.github.io/slick/ )。所以我使用 display: flex; align-items: center; 在列上(光滑 slider 的容器)但它会破坏 slider 。

所以我尝试使用绝对位置或使用 flexbox 使轮播居中,但它们都破坏了光滑的 slider 。

我希望有人得到了这个问题的 css/js/jquery 解决方案:)

这里有一个小问题:https://jsfiddle.net/victor_allegret/g3dsd78w/

(抱歉,我在将 slick 添加到堆栈溢出代码段时遇到问题)

HTML :

<div class='flex-container'>

<div class='single-item'>

<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
<div><h3>4</h3></div>
<div><h3>5</h3></div>
<div><h3>6</h3></div>

</div>

</div>

CSS:

.flex-container {
/* Using flexbox */
display: flex;
align-items: center;
/*----*/
margin: 0 auto;
padding: 40px;
height: 500px;
width: 80%;
color: #333;
background: #419be0;
}

.slick-slide {
text-align: center;
color: #419be0;
background: white;
}

JS :

$(".single-item").slick({
dots: true
});

最佳答案

像这样? With absolute position.

.abs-container {
position:absolute;

height:140px;
width:300px;
top:50%;
left:50%;
margin:-70px 0 0 -150px;

color: #333;
background: #419be0;
}

And this with FlexBox.

.flex-container {
position:absolute;
top:0px;
bottom:0px;
width:100%;
height:100%;

/* Using flexbox */
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-content: stretch;
align-items: center;
/*----*/

color: #333;
background: #419be0;
}
.flex-child {
width: 300px;
order: 0;
flex: 0 1 auto;
align-self: center;
}

HTML

<div class='flex-container'>
<div class='flex-child'>
<div class='single-item'>
.
.
.

关于javascript - 光滑的 slider 在 flex 容器中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45962822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com