vue 移动端ios元素滑动时页面会上下左右晃动

设置滚动条隐藏

.par-type ::-webkit-scrollbar {display: none;}

ios按住页面会左右晃动解决

.type {
     overflow-x: scroll;
     overflow-y: hidden;
}

ios手机上出现滚动不流畅解决

.type {
     height: 100%;
     overflow-x: scroll;
     overflow-y: hidden;
     background-color: #999;
     /*解决ios上滑动不流畅*/
     -webkit-overflow-scrolling: touch;
}

 

本文转载自:https://www.jb51.net/css/656268.html

posted @ 2020-06-18 16:59  本溢  阅读(2499)  评论(0)    收藏  举报