Jump to content
Search Community

Halcyon last won the day on October 26 2014

Halcyon had the most liked content!

Halcyon

Business
  • Posts

    79
  • Joined

  • Last visited

  • Days Won

    2

Community Answers

  1. Halcyon's post in how can we repeat animation for 2 seconds after every 10 second? was marked as the answer   
    I'd use a function that calls two tweens repeatedly. I'm sure there's a more elegant way to do it, but this will work:
    function doit(){ TweenMax.to(element, 2, { startAt:{ left:0 }, left:200 }); TweenMax.delayedCall(10, doit); } doit();
×
×
  • Create New...