-webkit-overflow-scrolling解決移動端iOS滾動卡頓現象

Bright2017發表於2018-10-12

css3中-webkit-overflow-scrolling使用方法

-webkit-overflow-scrolling: touch; //有回彈效果 
-webkit-overflow-scrolling: auto; //滑到哪停到哪

實現滾動回彈效果的頁面佈局 (實戰)

<div class="containBox no-scrollbar">
  <div>
      滾動的內容
  </div>
</div>
//滾動容器
.containBox{
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 50px;
    overflow-x: hidden;
    /*overflow-y:auto;//不能寫,會和下面的產生衝突*/
    -webkit-overflow-scrolling: touch;
}

轉載地址:https://blog.csdn.net/qq_39635302/article/details/79477596

 

相關文章