Hi Guys,
So I am re-coding my work to use the GSAP TweenMax.js library and notice that
an animation effect that I had previously coded with fonts is no longer working.
I have a few html <buttons> that I was using this jquery code on to make the fontsize swell and retract
$(".btn1").animate({fontSize: "24px"},700);
$(".btn1").animate({fontSize: "20px"},900);
I switched it over to use GSAP, but this doesn't seem to work.. Sorry I don't have a codepen for this.
TweenMax.to($(".btn1"), 0.7, { fontSize: 24, delay:4 });
TweenMax.to($(".btn1"), 0.9, { fontSize: 20, delay:4