FrontEnd/CSS
2021. 4. 27.
GSAP Animation
GSAP Animation 사이트 : https://greensock.com/ CDN : TweenMax.to(target, duration, {vars}); Position : 버튼 클릭하면 오른쪽으로 이동하기Start box box box //jquery $(".btn1").on("click",function(){ $(".box1_1,.box1_2,.box1_3").animate({ left:"90%" },1000); }); //TweenMax $(".btn1").on("click",function(){ TweenMax.to([".box1_1",".box1_2",,".box1_3"],1, { left:"90%" }); }); Position : 버튼을 클릭하면 오른쪽을 100px 움직이기 Start ..