我有一个包含图像uri(imagesToDisplay
)的对象数组(image.tempURL
)。我想创建一个标准的缩略图网格,就像你在手机库中的iPhone上一样,使用ng-repeat和灵活的观察端口宽度。
缩略图应裁剪并使图像居中,使其适合方形的扇形。
我尝试了以下内容,但它没有用......
HTML
<i ng-repeat="image in imagesToDisplay">
<img class="center-cropped" ng-src="{{image.tempURL}}" alt="Image">
</i>
CSS
.center-cropped {
object-fit: none; /* Do not scale the image */
object-position: center; /* Center the image within the element */
height: 100px;
width: 100px;
}
答案 0 :(得分:0)
知道了。基本上,用
替换object-fitobject-fit: cover;
对象拟合的四个可能值为follows: