示例
原图
mode="scaleToFill"
<view class="section__ctn">
//scaleToFill:不保持纵横比缩放图片,使图片完全适应
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="scaleToFill" src="图片的地址"></image>
</view>
编译结果
mode="aspectFit"
<view class="section__ctn">
//aspectFit:保持纵横比缩放图片,使图片的长边能完全显示出来
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="aspectFit" src="图片的地址"></image>
</view>
编译结果
mode="aspectFill"
<view class="section__ctn">
//aspectFill:保持纵横比缩放图片,只保证图片的短边能完全显示出来
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="aspectFill" src="图片的地址"></image>
</view>
编译结果
mode="top"
<view class="section__ctn">
//top:不缩放图片,只显示图片的顶部区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="top" src="图片的地址"></image>
</view>
编译结果
mode="bottom"
<view class="section__ctn">
//bottom:不缩放图片,只显示图片的底部区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="bottom" src="图片的地址"></image>
</view>
编译结果
mode="center"
<view class="section__ctn">
//center:不缩放图片,只显示图片的中间区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="center" src="图片的地址"></image>
</view>
编译结果
mode="left"
<view class="section__ctn">
//left:不缩放图片,只显示图片的左边区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="left" src="图片的地址"></image>
</view>
编译结果
mode="right"
<view class="section__ctn">
//right:不缩放图片,只显示图片的右边边区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="right" src="图片的地址"></image>
</view>
编译结果
mode="top left"
<view class="section__ctn">
//top left:不缩放图片,只显示图片的左上边区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="top left" src="图片的地址"></image>
</view>
编译结果
mode="top right"
<view class="section__ctn">
//top right:不缩放图片,只显示图片的右上边区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="top right" src="图片的地址"></image>
</view>
编译结果
mode="bottom left"
<view class="section__ctn">
//bottom left:不缩放图片,只显示图片的左下边区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="bottom left" src="图片的地址"></image>
</view>
编译结果
mode="bottom right"
<view class="section__ctn">
//bottom right:不缩放图片,只显示图片的右下边区域
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="bottom right" src="图片的地址"></image>
</view>
编译结果