CSS -- 图片宫格不变形显示

最近在项目中需要实现类似手机相册的功能,照片九宫格显示,且不管什么样大小的照片显示都不会变形的功能,废话不多说,直接看代码:

HTML:

<ul class="confirmphotos" ng-if="item.dynamicpics.length != 0 ">
  <li ng-repeat="dynamicpic in item.dynamicpics">
    <figure style="background-image:url({{apolloip}}{{dynamicpic.picaddress}})" ng-click="showBigImage(apolloip+dynamicpic.picaddress)" >
      <a href="#"></a>
    </figure>
  </li>
</ul>

CSS:


.confirmphotos{
	width: 100%;
	background: #FFF;
	padding-left: 3%
}
.confirmphotos:after{
	content: "";
	display: block;
	clear: both;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
.confirmphotos li{
	list-style: none;
	float: left;
	width: 27.5%;
	margin: 0 4% 2% 0;
	position:relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.confirmphotos figure{
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding-bottom: 100%; /* 关键就在这里 */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.confirmphotos figure a{
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
}

效果图如下:



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值