Jump to content
Search Community

ScrollTrigger Horizontal scroll to the right

LSchneiderman test
Moderator Tag

Go to solution Solved by akapowl,

Recommended Posts

Hey LSchneiderman and welcome to the GreenSock forums.

 

The main thing you'll need to do is position the section where its at its right most position to start. Besides that, the approach is pretty much the same. 

 

As for how to position the section where its at its right most position at the start, there are a lot of different ways of doing it depending on whether or not you need a particular order in your HTML and what CSS you are most comfortable using.

Link to comment
Share on other sites

Hi, Zach,

 

The problem is, I want it so that when the user scrolls down, the content moves horizontally to the right. If I order the content from panel 5 to panel 1

See the Pen BaQvPKO by lschneiderman (@lschneiderman) on CodePen

, when I scroll down, the panels still move from left to right instead of from right to left. I want the panels to start with 1 and move horizontally to 5, but in the -x direction. Does that make sense?

 

If I change the code to xPercent: 100 * (sections.length - 1), it moves in the right direction, but there are no panels to the left of panel 1 ...

Link to comment
Share on other sites

  • Solution

 

Hey @LSchneiderman

 

With flex-direction: row-reverse ( or alternatively flex-direction: row and direction: rtl ) on the sections and initially setting the sections to the end value of the original pen via gsap and then tweening them to 0 you should be good to go.

 

gsap.set( sections, { xPercent: -100 * (sections.length - 1) })

gsap.to(sections, {
  xPercent: 0,
  ...

 

Is this what you were looking for?

 

See the Pen c5fae34eea530215141e4987af16c075 by akapowl (@akapowl) on CodePen

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