实现图片自适应,按照一般情况只需设置:
img { width: 100%; height: auto; }
但是微信小程序里是特例,需要image标签上设置属性mode=widthFix,就是height:auto的作用,css同样设置100%,如下:
image { width: 100%; }
<image mode='widthFix'></image>
转 : https://blog.csdn.net/Mo_zifeng/article/details/89517510