gpt4 book ai didi

html - 如何添加位于 Bootstrap 轮播顶部的封面图片?

转载 作者:行者123 更新时间:2023-11-28 01:31:14 28 4
gpt4 key购买 nike

我有三个图像在整页轮播中旋转。我正在尝试添加一个“封面”图像,可以说,它位于三个旋转图像之上。此图像将有一个切口,让您可以看到在它后面旋转的三个。我只是不确定将此图像放在 HTML 中的什么位置或 css 的外观。

<header id="myCarousel" class="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>

<!-- Wrapper for Slides -->
<div class="carousel-inner">
<div class="item active">
<!-- Set the first background image using inline CSS below. -->
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide One');"></div>
<div class="carousel-caption">
<h2>Caption 1</h2>
</div>
</div>
<div class="item">
<!-- Set the second background image using inline CSS below. -->
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Two');"></div>
<div class="carousel-caption">
<h2>Caption 2</h2>
</div>
</div>
<div class="item">
<!-- Set the third background image using inline CSS below. -->
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Three');"></div>
<div class="carousel-caption">
<h2>Caption 3</h2>
</div>
</div>
</div>

<!-- Controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="icon-next"></span>
</a>

</header>

<script>
$('.carousel').carousel({
interval: 500, //changes the speed
pause: false
})
</script>

html,
body {
height: 100%;
}

.carousel,
.item,
.active {
height: 100%;
}

.carousel-inner {
height: 100%;
}

.fill {
width: 100%;
height: 100%;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}

最佳答案

不能 100% 确定我是否理解您的问题。您可以在 header 标记内添加一个 div,在顶部并使其绝对定位以位于顶部。如果需要调整 z-index,并且不要忘记将标题作为 position: relative。

关于html - 如何添加位于 Bootstrap 轮播顶部的封面图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30182039/

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