其他分享
首页 > 其他分享> > uniapp解决滚动条问题

uniapp解决滚动条问题

作者:互联网

在App.vue的style中写上


/* 解决小程序和app滚动条的问题 */
/* #ifdef MP-NEIXIN 11 APP-PLUS */

::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
color: transparent;
}

/* #endif */
/* 解决H5的问题 */
/* #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 */

标签:uniapp,none,color,滚动条,webkit,important,解决,transparent
来源: https://www.cnblogs.com/zhang-DaChong/p/16400096.html