uniapp scroll-view 隐藏滚动条

如果是想全局隐藏的话,可以放在App.vue中,如果是局部则在对应的页面中引入使用即可
 

	/* #ifdef MP-WEIXIN || APP-PLUS */
		::-webkit-scrollbar {
			display: none;
			width: 0 !important;
			height: 0 !important;
			-webkit-appearance: none;
			background: transparent;
			color: transparent;
		  }
	/* #endif */
		
	/* #ifdef H5 */
		uni-scroll-view .uni-scroll-view::-webkit-scrollbar {
			display: none;
			width: 0 !important;
			height: 0 !important;
			-webkit-appearance: none;
			background: transparent;
			color: transparent;
		}
	/* #endif */

你可能感兴趣的:(uni-app,html,前端,css)