JS event independent of finger pressure

2019-09-17 05:57发布

问题:

So, basically, I have a JS event which is activated when you arrive at a certain scroll position.

It works well on desktop browser, but not on mobile browser. You have to wait for the finger leaving the screen.

Would it be possible to activate the event even if the finger is still scrolling the page ?

回答1:

I believe that mobile browsers freeze all DOM manipulation and javascript during scrolls. So I'm not sure what you are trying to do is possible.