Jump to content
Search Community

The camera moves around the scene when scrolling THREE.JS GSAP SCROLLTRIGGER

LM3ALLEM

Go to solution Solved by Cassie,

Recommended Posts

Posted

Why are you using scrollTop to trigger scrollTriggered animations?
 

scrollTop >= 3700

  • Solution
Posted

Sorry for the speedy responses yesterday! I was in a bit of a rush.

So, a timeline - you could add a scrollTrigger to the whole page and then tween the camera position like this?
(this is pseudo code, not for copy pasting)
 

let timeline = gsap.timeline({
 scrollTrigger: {
   start: 0,
   end: "max",
   scrub: true
  }
})

tl.to(camera.position, {
  x: 20,
})
.to(camera.position, {
  x: 0,
})
.to(camera.position, {
  x: 40,
})

 

You've posted this twice now though and it's still really hard to work out what you're after and what the issue is? It seems perfectly smooth to me, apart from a jump near the end which I assume is just due to a trigger position or tweening to the wrong value?

But there's not really an obvious GSAP specific error. 

  • Like 1
Posted
5 hours ago, Cassie said:

Sorry for the speedy responses yesterday! I was in a bit of a rush.

So, a timeline - you could add a scrollTrigger to the whole page and then tween the camera position like this?
(this is pseudo code, not for copy pasting)
 

let timeline = gsap.timeline({
 scrollTrigger: {
   start: 0,
   end: "max",
   scrub: true
  }
})

tl.to(camera.position, {
  x: 20,
})
.to(camera.position, {
  x: 0,
})
.to(camera.position, {
  x: 40,
})

 

You've posted this twice now though and it's still really hard to work out what you're after and what the issue is? It seems perfectly smooth to me, apart from a jump near the end which I assume is just due to a trigger position or tweening to the wrong value?

But there's not really an obvious GSAP specific error. 

Thanks! 

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...