Phonegap onscroll screen does not work until scroll

I am developing an ios application using phonegap and jquery mobile. I have a list in the application that can be scrolled and I use

-webkit-overflow-scrolling: touch; overflow : scroll; 

like scrolling to feel native. My problem is that the onscroll event does not fire until the scroll stops. It starts only when your finger is on top of the screen (in a state of touch), and after that it does not work until it stops. I know about some other scroll plugins, such as iscroll, but I do not want to use them because they are too buggy. How can I solve my problem?

+6
source share
1 answer

Source: https://habr.com/ru/post/979570/


All Articles