Suyash Surve Posted June 21, 2024 Posted June 21, 2024 I recently explored Active Theory's website and was amazed by the work section they've created to showcase their projects. I'm curious to know if it is possible to create a 3D rotating gallery around a model, similar to what they have done, using GSAP....? Here is the link : https://activetheory.net/work
thehaes Posted June 21, 2024 Posted June 21, 2024 Of course, definetly possible. I've been using gsap to animate 3d elements in both threejs and r3f. Don't expect ready solution, but I would strongly suggest watching Yuri Artiukh streams on youtube - this one has something similar to what you're looking for, just need to modify it to your needs 1
Suyash Surve Posted June 21, 2024 Author Posted June 21, 2024 Checked that, but that seems kind of different than what I want to achieve. He used webgl too which I'm unfamiliar with. So is there any other way that it can be possible with GSAP...? Like by adjusting position of each block and then on scroll it should move similar to the Active Theory's website....?
thehaes Posted June 21, 2024 Posted June 21, 2024 1 hour ago, Suyash Surve said: Checked that, but that seems kind of different than what I want to achieve. He used webgl too which I'm unfamiliar with. So is there any other way that it can be possible with GSAP...? Like by adjusting position of each block and then on scroll it should move similar to the Active Theory's website....? Not sure what you mean, it uses threejs which is a library that is based on webgl, Yuri uses threejs and vanilla javascript so it's all the same. GSAP can animate almost anything in threejs, so you can easily create some planes on the canvas, give them textures, rotatations and position them the way you want, then wrap in group and use gsap to animate that group like gsap.to(group.rotation, { y: 360 }) and adding scrollTrigger to it. 3
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now