H5页面在 ios 端滑动不流畅

1,146 阅读1分钟

-webkit-overflow-scrolling: touch;

.page{
  width:100%;
  height: 100%;
  background: #FF3D3D;
  position: absolute;   //添加这个是为了将背景色平铺整个页面
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;  //主要是通过这个属性解决
}