html::-webkit-scrollbar,
body::-webkit-scrollbar {
display: none;
}
html,
body {
height: 100%;
overflow: hidden;
overflow-y: scroll;
/* 使得ios滑动流畅 */
-webkit-overflow-scrolling: touch;
}
PS : 设置 height: 100%; overflow: hidden; overflow-y: scroll;
是重点
发表回复