1. 在pages.json里设置
//app页面不显示滚动条
"scrollIndicator": "none"
  1. 在uniapp的scroll-view组件中隐藏滚动条
::-webkit-scrollbar {
		width: 0;
		height: 0;
		background-color: transparent;
	} 
  1. html中隐藏滚动条(会导致页面无法滑动)
overflow-y:hidden;
  1. app-plus隐藏滚动条
"app-plus": {
    "scrollIndicator":"none"
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐