I'm trying to remake scroll effect from this website : https://wemakefab.com/
gsap.registerPlugin(ScrollTrigger);
gsap.to(".scroll-content",{
scrollTrigger:{
trigger:".scroll-content",
start:'top top',
end:'bottom bottom',
scrub:1.2,
markers:true
},
y:-document.querySelector('.scroll-content').offsetHeight
})
It actually translate on scroll but it also create some huge white space at the end of the website. On the exemple they are putting css overflow:hidden on body but for me it block completly the scroll.
<div class="scroll-content">
<section class="green"></section>
<section class="blue"></section>
<section class="green"></section>
<section class="blue"></section>
<section class="green"></section>
<section class="blue"></section>
<section class="green"></section>
<section class="blue"></section>
<section class="green"></section>
<section class="blue"></section>
</div>