Jump to content
Search Community

How To Remove White Space After Horizontal Scroll In Tabs?

Majharul Islam test
Moderator Tag

Go to solution Solved by GreenSock,

Recommended Posts

I am using React JS To make this horizontal scroll, It works perfectly without any white space problem but when I try it as a tabs element, I can't do this anymore.

Here is the codesandbox Link:

https://codesandbox.io/s/remove-white-space-after-horizontal-scroll-zlt2rm?file=/src/index.js

I think, the problem is when I switch tab it's can't resize it's self.

 

Link to comment
Share on other sites

  • Solution

It's not related to GSAP at all - if you console.log() your Array, it always has a length of 5. Like for the 2nd group, it's 

[div.panel, div.panel, div.panel, null, null]

So you're animating xPercent to -500 every time. You should just fix your Array and then it'll work. 

 

By the way, I'd recommend using gsap.context() in React. You've only got one tween there, so your technique is fine in that one case, but I just like getting people used to using gsap.context() in React because it solves so many issues. If you haven't read this yet, I'd recommend it: 

 

Happy tweening!

  • Thanks 1
Link to comment
Share on other sites

27 minutes ago, GreenSock said:

It's not related to GSAP at all - if you console.log() your Array, it always has a length of 5. Like for the 2nd group, it's 

[div.panel, div.panel, div.panel, null, null]

So you're animating xPercent to -500 every time. You should just fix your Array and then it'll work. 

 

By the way, I'd recommend using gsap.context() in React. You've only got one tween there, so your technique is fine in that one case, but I just like getting people used to using gsap.context() in React because it solves so many issues. If you haven't read this yet, I'd recommend it: 

 

Happy tweening!

Thank you so much @GreenSock 🥰

 

  • Like 1
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...