<div class="box green"></div>
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
//animate ".box" from an opacity of 0 to an opacity of 0.5
gsap.fromTo(
".box",
{ autoAlpha: 0, x: -200 },
{ autoAlpha: 0.5, x: 200, duration: 1 }
);