项目中发现,有的图片在刚进入时会出现拉伸,之后还原的过程。发现是图片高度没有设置的问题。当设置mode='widthFix’模式时,往往忘记设置高度,把height值设置为auto解决。
.express-img {
widht:20px;
height:auto;
}
<image class='express-img' mode='widthFix' src="..." />
项目中发现,有的图片在刚进入时会出现拉伸,之后还原的过程。发现是图片高度没有设置的问题。当设置mode='widthFix’模式时,往往忘记设置高度,把height值设置为auto解决。
.express-img {
widht:20px;
height:auto;
}
<image class='express-img' mode='widthFix' src="..." />