我有一个旋转木马,图像有各种尺寸。我希望这些图像以相同的尺寸显示。通过添加height
可以解决此问题,但是轮播会失去响应能力(当您从移动设备输入时)。这是我的轮播代码:
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
@foreach($lastPosts as $key => $last)
<div class="item @if($key == 0) active @endif">
<!-- post -->
<div class="post post-thumb">
<a class="post-img" href="/{{ $last->category->path }}/post/{{ $last->id }}"><img src="./img/posts/{{ $last->image->name }}" class="img-responsive d-block w-100" alt=""></a>
<div class="post-body">
<div class="post-category">
<a href="/{{ $last->category->path }}">{{ $last->category->name }}</a>
</div>
<h3 class="post-title title-lg"><a href="/{{ $last->category->path }}/post/{{ $last->id }}">{{ $last->title }}</a></h3>
<ul class="post-meta">
<li>{{ \Carbon\Carbon::parse($last->date)->format('d '.$months[date('n')].' Y') }}</li>
</ul>
</div>
</div>
<!-- /post -->
</div>
@endforeach
</div>
</div>
我该如何解决这个问题?
答案 0 :(得分:0)
您尝试过引导img-fluid吗?
Bootstrap中的图像使用.img-fluid进行响应。最大宽度: 100%;和高度:自动;应用于图像,以便缩放 带有父元素。