所以我尝试使用Django构建一个网站,使用图像滑块旋转木马显示图像,但代码似乎不起作用。我不知道为什么。而不是旋转木马的图像堆叠在另一个顶部。
的数据
我的html:
<div class="section">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-7">
<div class="img-property-slide-wrap">
<div class="img-property-slide">
<img src="{{ object.image1.url }}" alt="Image" class="img-fluid">
<img src="{{ object.image2.url }}" alt="Image" class="img-fluid">
<img src="{{ object.image3.url }}" alt="Image" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
字符串
My style.css:
.img-property-slide-wrap {
position: relative; }
.img-property-slide-wrap .tns-outer .tns-inner {
padding-bottom: 100px !important; }
.img-property-slide-wrap .tns-nav {
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
bottom: 40px;
z-index: 2; }
.img-property-slide-wrap .tns-nav button {
background: none;
border: none;
display: inline-block;
margin: 2px;
position: relative; }
.img-property-slide-wrap .tns-nav button:active, .img-property-slide-wrap .tns-nav button:focus {
outline: none; }
.img-property-slide-wrap .tns-nav button:before {
position: absolute;
content: "";
width: 7px;
height: 7px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.2);
right: 0;
-webkit-transition: .3s all ease;
-o-transition: .3s all ease;
transition: .3s all ease; }
.img-property-slide-wrap .tns-nav button.tns-nav-active:before {
background-color: #1f6f8b; }
型
1条答案
按热度按时间6rvt4ljy1#
您的HTML标记在carousel中存在一些结构问题。请在引导文档中查看carousel示例。
https://getbootstrap.com/docs/4.0/components/carousel/
下面是代码的修正版本,它以carousel的形式显示图像。另外,不要忘记在HTML中包含 Bootstrap 所需的依赖项。
字符串