移动端web页面滚动不流畅,卡顿闪烁解决方案

Posted mousea

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端web页面滚动不流畅,卡顿闪烁解决方案相关的知识,希望对你有一定的参考价值。

1.ios端的-webkit-overflow-scrolling属性可控制页面滚动效果,设置如下实现惯性滚动和弹性效果:

-webkit-overflow-scrolling: touch

2.position属性导致的页面滚动不流畅问题:

<div style="overflow-x: hidden; overflow-y: auto; position: absolute; height: 200px;">
    <div style="position: relative; height: 200px;"></div>
    <div style="position: relative; height: 200px;"></div>
    <div style="position: relative; height: 200px;"></div>
</div>

如上代码所示,当absolute定位的容器内存在relative定位并且高度大于外置容器时,容器的滚动会出现卡顿闪烁现象,解决方法如下所示:

<div style="overflow-x: hidden; overflow-y: auto; position: absolute; height: 200px;">
    <div style="position: absolute; top: 0; left: 0;">
        <div style="position: relative; height: 200px;"></div>
        <div style="position: relative; height: 200px;"></div>
        <div style="position: relative; height: 200px;"></div>
    </div>
</div>

可以用一个absolute容器将内部relative元素包裹起来,便可解决滚动闪烁问题。

 

以上是关于移动端web页面滚动不流畅,卡顿闪烁解决方案的主要内容,如果未能解决你的问题,请参考以下文章

为啥网站在手机端加载加载完成会跳回顶部?

使用apicloud开发移动端APP,IOS list页面滚动卡顿解决记录

移动端返回顶部,再迅速滑动导致闪烁的BUG

JQuery 动画运行不流畅,滚动条闪烁很多,DIV 动画化

在IOS上滚动H5页面会卡顿一下,怎么解决

scroll-苹果滑动卡顿