-
Notifications
You must be signed in to change notification settings - Fork 486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iPad Compatibility #17
Comments
I think, for the moment, it’s not possible on iOS devices. iOS devices freeze DOM manipulation during scroll, queuing them to apply when the scroll finishes. |
I know Skrollr uses a work around for this, it might interest you. The solution consists in wrapping all your content in a specific div, then listening on the |
@MuTLY - yes it freezes some DOM manipulation. But this plugin isn't in the business of manipulating the DOM. You can fix it so the event fires continuously during scrolling on iPad. Just bind to As for users of jquery.inview who try to manipulate the DOM in response to these events, that's where you run into trouble. |
I see. Thank you @nicooprat and @joshribakoff for the explanations. |
jquery 2.x support + checkInView fixes
The event doesn't fire until after scrolling has stopped on iPad, so elements don't fire as the user is scrolling down the page.
The text was updated successfully, but these errors were encountered: