Detailed explanation of overflow-scrolling to solve scrolling lag problem

Detailed explanation of overflow-scrolling to solve scrolling lag problem

Preface

If you use the overflow: scroll attribute for a div or module, there will be obvious lag when browsing on an iOS phone. However, this problem does not occur on Android phones.

Workaround

The following code can solve this lag problem: -webkit-overflow-scrolling: touch;, because this line of code enables the hardware acceleration feature, so the sliding is very smooth. This method can indeed solve the sliding lag problem of iOS5.0 and Android4.0 and later systems.

-webkit-overflow-scrolling: auto | touch;

auto: Normal scrolling. When the finger is removed from the touch screen, the scrolling stops immediately.

Touch: Scroll rebound effect. When the finger is removed from the touch screen, the content will keep scrolling for a while. The speed and duration of continued scrolling are proportional to the intensity of the scrolling gesture. A new stacking context is also created.

Compatible writing

over-flow: auto; /* winphone8 and android4+ */
-webkit-overflow-scrolling: touch; /* ios5+ */

ps:

1. If adding this property does not work, add overflow-y: scroll and it will work.

2. When an element is set with position: absolute|relative and then the -webkit-overflow-scrolling: touch; attribute is added, you will find that the scrolling area will get stuck after sliding a few times and cannot slide anymore. In this case, just increase the z-index value of the element.

References: https://www.jianshu.com/p/1f4693d0ad2d

https://www.cnblogs.com/wuyinghong/p/7450041.html

This is the end of this article on how to solve the scrolling jam problem with overflow-scrolling. For more information about overflow-scrolling jam, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. We hope that everyone will support 123WORDPRESS.COM in the future!

<<:  HTML Nine-grid Layout Implementation Method

>>:  Creating private members in JavaScript

Recommend

JavaScript to achieve uniform animation effect

This article example shares the specific code for...

How to use indexes to optimize MySQL ORDER BY statements

Create table & create index create table tbl1...

Javascript implements simple navigation bar

This article shares the specific code of Javascri...

My personal summary of mysql 5.7 database installation steps

1.mysql-5.7.19-winx64.zip (this is the free insta...

CSS easily implements fixed-ratio block-level containers

When designing H5 layout, you will usually encoun...

Gallery function implemented by native Js

Table of contents The first The second Native Js ...

Detailed explanation of the interaction between React Native and IOS

Table of contents Prerequisites RN passes value t...

HTML uses canvas to implement bullet screen function

Introduction Recently, I needed to make a barrage...

Download MySQL 5.7 and detailed installation diagram for MySql on Mac

1. Enter the following address in the browser htt...

Semantics, writing, and best practices of link A

The semantics, writing style, and best practices ...

MySQL multi-table join introductory tutorial

Connections can be used to query, update, and est...

How to install mysql5.6 in docker under ubuntu

1. Install mysql5.6 docker run mysql:5.6 Wait unt...

Pricing table implemented with CSS3

Result: Implementation Code html <div id="...

Detailed explanation of how to use zabbix to monitor oracle database

1. Overview Zabbix is ​​a very powerful and most ...