使 Scrollbar angular js 和 framework 7 移动

Making Scrollbar angular js and framework 7 mobile

我想为我的移动项目制作一个滚动条,我正在使用 angular js 和框架 7。我想使用不同的设备而不是固定高度。我试过 nicescroll ,但是它和 framework 7 一起崩溃了。你有什么建议吗?

我使用了 webkit-scrollbar 并且它适用于 fw7。它适用于所有移动设备。

::-webkit-scrollbar {
    overflow: auto;
    height: 100%;
    position: relative;
    z-index: 1;
    }

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}