关于移动端解决ios滑动不畅的问题

其一:

给html和body添加

-webkit-overflow-scrolling: touch;

其二:

给需要滑动的div添加

overflow-y:auto;
height:100%;

其三:

隐藏掉侧边栏

div::-webkit-scrollbar {
    width:0;
    height:0;
  }

 



posted @ 2017-08-10 14:16  星光璀璨的夜空  阅读(564)  评论(0编辑  收藏  举报