Currently delving into GSAP (Greensock Animation Platform) during my free time and exploring its capabilities. I'm curious if it's possible to set up an array of values for a specific repeating element. Here's what my Tween currently looks like;
TweenMax.from(blink, 0.2, {repeat: -1, scale: 0, ease: Power1.easeInOut, repeatDelay: 3});
I'm interested in having the "blink" element pause for 3 seconds, blink again, then pause for 0.5 seconds before blinking once more, and repeating this pattern. I've searched through the documentation but haven't come across anything relevant. Can this be achieved with GSAP or would I need to utilize JavaScript?
Thanks!