<h2>Scroll down</h2>
<div class="box"></div>
<div class="outline"></div>
body {
height: 300vh;
}
h1, h2 {
margin-bottom: 100vh;
}
h2 {
text-align: center;
}
.box, .outline {
position: fixed;
top: calc(50% - 40px);
left: calc(50% - 40px);
}
.outline {
width: 80px;
height: 80px;
transform: translate(-1px, -1px);
outline: dashed 2px var(--color-surface-white)
}
gsap.to('.box', {
x: 300,
scrollTrigger: {
start: 100,
end: 300,
scrub: true
}
});
gsap.to('.box', {
x: -300,
scrollTrigger: {
start: 400,
end: 800,
scrub: true
}
});