我在响应式网站上设置了flexslider。我创建的滑块同时采用横向和纵向方向图像。我设置了smoothHeight: true
,因此调整高度以适应图像。
在最大的媒体查询中,flexslider容器的宽度为750px。这适用于横向图像,但纵向图像变得太大。纵向图像的宽度设置为与容器相同的大小 - 750px宽,因此高度至少是该值的两倍,因此您无法在不滚动的情况下查看整个图像。
在css中,我尝试设置max-height: 750px
来解决高度问题,但是flexslider然后将图像拉伸到750px宽,750px高。
有没有人知道如何让flexslider保持纵横比并根据max-height
调整图像的宽度?因此,肖像图像将是750px高,但保持其纵横比。
答案 0 :(得分:2)
我不了解您所说的Flexslider的哪些功能 - 缩放图像或滚动工具栏中的缩略图? 无论如何,这两种情况都有一种解决方案:
<style>
figure {
outline: green solid 1px;
padding: 2px;
}
img {
width: 100%;
height: 100%;
display: block;
position: relative;
outline: red solid 1px;
opacity: .5;
}
.scale img{
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
margin: 0 auto;
vertical-align: middle;
}
.toheight img{
max-width: none;
}
</style>
<figure class="scale toheight" width="200" height="200">
<img src="http://placekitten.com/250/300"/>
</figure>
中裁剪或缩放图像的解决方案