uniapp ios下隐藏滚动条

1.page.json  中globalStyle加入如下配置
"globalStyle": {
    "app-plus": {
        "scrollIndicator": "none" //重点是这行,其他的是我自己的需求,我这里选的是全局样式,如果要根据页面配置,则在相应的页面节点配置
    }
},

2.app.vue页面 style标签加入
::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
    -webkit-appearance: none;
    background: transparent;
}

你可能感兴趣的:(uniapp ios下隐藏滚动条)