小程序兼容性问题
# 小程序兼容性问题
# 解决小程序图片闪动变形问题
- 如果设置了
widthFix
,则手动将height
调整为auto
; - 如果设置了
heightFix
,则手动将width
调整为auto
;
<style lang="scss">
.widthFix {
height: auto;
}
.heightFix {
width: auto;
}
</style>
<image
class="widthFix"
mode="widthFix"
src="http://clouds.guowei.link/blog/1.jpg"
/>
<image
class="heightFix"
mode="heightFix"
src="http://clouds.guowei.link/blog/1.jpg"
/>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# showLoading 展示问题
小程序 wx.showLoading 中 title 值在 安卓下只能显示最大 7 个字符,ios 可大于 7 个字符