::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
color: transparent;
}
::-ms-scrollbar {
display: none;
width: 0;
height: 0;
color: transparent;
}
::-moz-scrollbar {
display: none;
width: 0;
height: 0;
color: transparent;
}
小程序中页面有下滑的功能时需要在json文件中配置属性:"disableScroll": true, 来保证ios端禁止上下滑动。
{
"disableScroll": true,
}
本文介绍了如何在小程序中通过JSON配置文件阻止页面的上下滑动,关键在于添加'disableScroll': true'属性。
2330

被折叠的 条评论
为什么被折叠?



