Bootstrap 4轮播图像无法正确显示
Posted
技术标签:
【中文标题】Bootstrap 4轮播图像无法正确显示【英文标题】:Boostrap 4 Carousel Image not displaying properly 【发布时间】:2021-01-23 16:40:54 【问题描述】:我有一个 bootstrap 4 轮播,我在其中添加了 3 张图片。 我也希望它们作为全屏旋转木马,旋转木马的高度是设备的高度,并且可以正常工作。 但问题是图像的宽度,宽度似乎响应并保持在轮播包装器内,但图像未正确显示。图像似乎被裁剪并且完整图像未正确显示。 在正常模式下查看时,轮播正常工作,但在移动视图中查看时,轮播图像似乎被裁剪。这是我的代码
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled javascript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
.full-screen
background-size: cover;
background-position: center;
background-repeat: no-repeat;
</style>
</head>
<body>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="carousel-item">
<img class="d-block w-100" src="images/banner-1.png"
data-color="lightblue" >
<div class="carousel-caption d-md-block">
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/banner-2.png" data-color="firebrick" >
<div class="carousel-caption d-md-block">
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/banner-3.png" data-color="violet" >
<div class="carousel-caption d-md-block">
</div>
</div>
</div>
<!-- Controls -->
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</body>
</html>
<script>
var $item = $('.carousel-item');
var $wHeight = $(window).height();
$item.eq(0).addClass('active');
$item.height($wHeight);
$item.addClass('full-screen');
$('.carousel img').each(function()
var $src = $(this).attr('src');
var $color = $(this).attr('data-color');
$(this).parent().css(
'background-image' : 'url(' + $src + ')',
'background-color' : $color
);
$(this).remove();
);
$(window).on('resize', function ()
$wHeight = $(window).height();
$item.height($wHeight);
);
$('.carousel').carousel(
interval: 1000,
pause: "false"
);
</script>
```
以下是一些示例输出快照: 普通视图 响应式视图
【问题讨论】:
根据 Bootstrap,在所有其他内容之后,您的最后 3 个scripts
(popper、jquery、js)确实应该在 </body>
之上。
@JeffBerlin 正如你所说,我已经改变了,但这并不能解决我的问题。仍然是同样的问题。你能说出问题出在哪里吗?它会是文件的原始高度和宽度吗?因为当我运行原始示例时,其中的图像在正常/响应视图中都正确显示。
是的,这更多是为了修复它应该在的位置。我仍在努力解决您的问题
我怀疑全屏的背景尺寸是您的解决方案所在。尝试为移动屏幕编写规则并尝试不同的背景大小,例如“包含”。
【参考方案1】:
您需要添加一个移动查询以将图像的背景大小设置为“包含”,而不是在小屏幕上“覆盖”。
<style>
@media only screen and (min-width: 768px)
.full-screen
background-size: contain;
background-position: center;
background-repeat: no-repeat;
</style>
【讨论】:
【参考方案2】:删除.full-screen
CSS 中的background-size: cover;
并将其切换为background-size: contain;
似乎可以解决我的问题。显然,您可以将其删除,图像会更小/原始尺寸。
var $item = $('.carousel-item');
var $wHeight = $(window).height();
$item.eq(0).addClass('active');
$item.height($wHeight);
$item.addClass('full-screen');
$('.carousel img').each(function()
var $src = $(this).attr('src');
var $color = $(this).attr('data-color');
$(this).parent().css(
'background-image' : 'url(' + $src + ')',
'background-color' : $color
);
$(this).remove();
);
$(window).on('resize', function ()
$wHeight = $(window).height();
$item.height($wHeight);
);
$('.carousel').carousel(
interval: 1000,
pause: "false"
);
.full-screen
background-size: contain;
background-position: center;
background-repeat: no-repeat;
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="carousel-item">
<img class="d-block w-100 img-fluid" src="https://www.drupal.org/files/drupal-wordmark.svg"
data-color="lightblue" >
<div class="carousel-caption d-md-block">
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100 img-fluid" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" data-color="firebrick" >
<div class="carousel-caption d-md-block">
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100 img-fluid" src="images/banner-3.png" data-color="violet" >
<div class="carousel-caption d-md-block">
</div>
</div>
</div>
<!-- Controls -->
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
【讨论】:
以上是关于Bootstrap 4轮播图像无法正确显示的主要内容,如果未能解决你的问题,请参考以下文章
如何让 React.js 和 Bootstrap 4 模态轮播始终在打开时显示第一张图像
当我在 django 中运行 Bootstrap 轮播时,它不会显示图像,但是当我在普通 HTML 文件中使用它们时它们加载得非常好