前面的话
图像在网页制作中也是常要用到的元素,本文将详细介绍Bootstrap图像
响应式图片
通过为图片添加 .img-responsive
类可以让图片支持响应式布局。其实质是为图片设置了 max-width: 100%;
、 height: auto;
和 display: block;
属性,从而让图片在其父元素中更好的缩放
img {
vertical-align: middle;
}
.img-responsive,.thumbnail>img,.thumbnail a >img,.carousel-inner > .item >img,.carousel-inner > .item > a >img {
display: block;
max-width: 100%;
height: auto;
}
如果需要让使用了 .img-responsive
类的图片水平居中,请使用 .center-block
类,不要用 .text-center
在IE8-10浏览器中,设置为 .img-responsive
的 SVG 图像显示出的尺寸不匀称。为了解决这个问题,在出问题的地方添加 width: 100% \9;
即可。Bootstrap 并没有自动为所有图像元素设置这一属性,因为这会导致其他图像格式出现错乱
<div>
<img src="http://via.placeholder.com/350x150" class="img-responsive" alt="Responsive image">
</div>
图片形状
通过为 <img>
元素添加以下相应的类,可以让图片呈现不同的形状
1、img-rounded:圆角图片
2、img-circle:圆形图片
3、img-thumbnail:缩略图片
对于圆角图片和圆形图片效果,因为是使用了CSS3的圆角样式border-radius来实现的,所以注意对于IE8以及其以下版本不支持,是没有圆角效果的。
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
display: inline-block;
max-width: 100%;
height: auto;
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.img-circle {
border-radius: 50%;
}
<div>
<img src="http://via.placeholder.com/140x140" alt="rounded" class="img-rounded">
<img src="http://via.placeholder.com/140x140" alt="circle" class="img-circle">
<img src="http://via.placeholder.com/140x140" alt="thumbnail" class="img-thumbnail">
</div>