移动端隐藏滚轮

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    
    
    display: none;
}

html,
body {
    
    
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
    /* 使得ios滑动流畅 */
    -webkit-overflow-scrolling: touch;
}

猜你喜欢

转载自blog.csdn.net/e1172090224/article/details/108120883