Jump to content
Search Community

ScrollTrigger and ignoreMobileResize inside Instagram app

Sublimio test
Moderator Tag

Recommended Posts

In scrollTrigger I use the ignoreMobileResize parameter to avoid some issues I have when the navigation bar is shown or hidden. Unfortunately, this parameter doesn't seem to work when the site is opened in-app, for example if the site is opened inside Instagram.

The interface in Instagram also has bars that show and hide, and these create the same problem that I had solved with the use of ignoreMobileResize.

Link to comment
Share on other sites

We haven't heard anything like that - are the bars much bigger than the ones in the normal browser? The ignoreMobileResize feature only skips it if it changes the vertical window.innerHeight by 25% or less. 

 

You can disable the auto refreshing on all mobile devices like this: 

if (ScrollTrigger.isTouch) { // only do this on touch devices
  ScrollTrigger.config({
  	autoRefreshEvents: "DOMContentLoaded,load,visibilitychange" // notice this list doesn't contain "resize"
  });
}

Details: https://gsap.com/docs/v3/Plugins/ScrollTrigger/static.config()

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...