感觉ios的小程序每个页面都可以下拉出现白屏
有时页面带有滑动的属性会跟着晃动,体验不是很好
解决办法:
先禁止页面下拉
<config> { navigationBarTitleText: "购物车", disableScroll:true } </config>
这样的话页面整个都拉不动了,下面溢出的内容就拉不出来了,此时用overflow:scroll间接滑动
.content{ width:100%; height:600rpx; overflow-y: scroll; }
感觉ios的小程序每个页面都可以下拉出现白屏
有时页面带有滑动的属性会跟着晃动,体验不是很好
解决办法:
先禁止页面下拉
<config> { navigationBarTitleText: "购物车", disableScroll:true } </config>
这样的话页面整个都拉不动了,下面溢出的内容就拉不出来了,此时用overflow:scroll间接滑动
.content{ width:100%; height:600rpx; overflow-y: scroll; }