如果设置了-webkit-overflow-scrolling: touch。iPhone是不会显示滚动条的。

    1. .van-list {
    2. overflow-y: scroll;
    3. -webkit-overflow-scrolling: auto;
    4. }
    5. .van-list::-webkit-scrollbar {
    6. -webkit-appearance: none;
    7. }
    8. .van-list::-webkit-scrollbar:vertical {
    9. width: 8px;
    10. }
    11. .van-list::-webkit-scrollbar:horizontal {
    12. height: 11px;
    13. }
    14. .van-list::-webkit-scrollbar-thumb {
    15. border-radius: 8px;
    16. border: 2px solid white; /* should match background, can't be transparent */
    17. background-color: rgba(0, 0, 0, .5);
    18. }