设置滚动条隐藏
.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; }