gpt4 book ai didi

javascript - 如何使用 flickity slider 设置每页图像数

转载 作者:行者123 更新时间:2023-11-28 19:13:38 25 4
gpt4 key购买 nike

我正在为主页使用 flicikity slider 。我的问题是,每页不能设置超过 4 张图片。

我完整阅读了文档。我找不到完美的答案。

我使用 siema 包有一个名为“perPage: 1”的选项,这个选项解决了我的问题。但是没有这样的选择。此外,我尝试了一些 CSS 技巧,例如减小 widthheight 大小。但是没有用。

最佳答案

我认为他们会自动在每个 div 上添加 slider 在此处查看 codepen 解决方案:

HTML

<div class="carousel"
data-flickity='{ "wrapAround": true }'>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
<div class="carousel-cell"></div>
</div>

CSS

* { box-sizing: border-box; }

body { font-family: sans-serif; }

.carousel {
background: #EEE;
}

.carousel-cell {
width: 66%;
height: 200px;
margin-right: 10px;
background: #8C8;
border-radius: 5px;
counter-increment: carousel-cell;
}


.carousel-cell:before {
display: block;
text-align: center;
content: counter(carousel-cell);
line-height: 200px;
font-size: 80px;
color: white;
}

关于javascript - 如何使用 flickity slider 设置每页图像数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58850856/

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