我有以下标记:
<section class="block">
<img class="img-background" src="assets/background_banner.png" alt="" >
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="active item">
<img src="assets/banner_1.png" alt="" >
</div>
像这样的CSS:
.img-background{
position:absolute;
margin-left:50%;
left:-512px;
top:0px;
z-index:1;
}
.carousel{
position:absolute;
margin-left:50%;
left:-512px;
top:0px;
z-index:2;
}
.carousel .item {
width: 100%; /*slider width*/
height: auto; /*slider height*/
}
.carousel .item img {
margin-left: 0%;
width: 100%; /*img width*/
}
/*full width container*/
@media (max-width: 767px) {
.block {
margin-left: -20px;
margin-right: -20px;
}
}
它在浏览器全屏时工作。我有一个背景图像和一个旋转木马幻灯片。但是当我让浏览器变小时,旋转木马会在图像缩放时保持很大。我希望它们都以相同的方式扩展。这可能吗?