Share Posted February 7, 2016 Hi! I am having a bit of trouble getting both svg's to inteact with GSAP, in the pen attached there are 2 svg's (triangle, arrow) and a div (probe). Triangle and probe are supposed to move with tweenMax but only the div does so, how can i get my svg's moving or changing fill, etc.. with GSAP. See the Pen QyZvep by caemostajo (@caemostajo) on CodePen Link to post Share on other sites
Solution Share Posted February 7, 2016 Left isn't going to do anything, and you had the wrong selector for triangle... TweenMax.to("#triangle", 3, {x:700}); TweenMax.to(".probe", 3, {x:700}); 3 Link to post Share on other sites