注释很详细,直接上代码
上一篇
新增内容:
1.图片的三种常见缩放形式
2.图片全屏预览
源码:
testImg.wxml
<!-- 默认状态,不保证缩放比,完全拉伸填满容器 -->
<image class="pic" mode="scaleToFill" src="/static/uploads/slide_1.jpg"></image><!-- 保证缩放比,完全显示长边 -->
<image class="pic" mode="aspectFit" src="/static/uploads/goods_1.jpg"></image><!-- 保证缩放比,完全显示短边 -->
<image class="pic" mode="aspectFill" src="/static/uploads/goods_2.jpg"></image><!-- 实现全屏预览 -->
<image class="picOverall" mode="aspectFit" src="/static/uploads/goods_1.jpg"></image>
testImg.wxss
.pic{//页面横向总长度为750rpxwidth: 300rpx;height: 300rpx;background-color: aqua;
}.picOverall{//高度设为100%以实现全图预览的效果height: 100vh;//长度占满屏幕长度width: 750rpx;background-color: palegoldenrod;
}
演示效果:
下一篇