作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试修改此轮播 ( https://codepen.io/ancaspatariu/pen/WpQYOP ) 以便将其插入图书零售网站。我想要实现的是为轮播的每个“幻灯片”显示三个书籍封面。现在这是我的代码,我添加了 display: inline-block 属性,但它仍然在每张幻灯片上显示一个封面。代码较长,但我将只向您展示有关图像轮播布局的部分。
HTML
<div>
<div class="carousel">
<ul class="slides">
<input type="radio" name="radio-buttons" id="img-1" checked />
<li class="slide-container">
<div class="slide-image">
<img src="Bookaholic/img/DearData_US_jacket.jpeg" >
</div>
<div class="slide-image">
<img src="Bookaholic/img/DearData_US_jacket.jpeg" >
</div>
CSS
ul.slides {
display: block;
position: relative;
height: 600px;
margin: 0;
padding: 0;
overflow: hidden;
list-style: none;
}
.slide-container {
display: inline-block;
white-space: nowrap;
width:1400px;
}
.slide-image {
display: inherit;
position: absolute;
bottom:80%;
left:20%;
width: 20%;
height: 60%;
top: 0;
opacity: 0;
transition: all .7s ease-in-out;
}
.slide-image img {
width: 20%;
min-width: 100%;
height: 100%;
}
最佳答案
您可以使用插件来做到这一点:Slick Carousel 很棒,查看链接 https://www.jqueryscript.net/demo/Fully-Responsive-Flexible-jQuery-Carousel-Plugin-slick/
关于html - 如何在轮播中每页显示三个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55589063/
我是一名优秀的程序员,十分优秀!