Jump to content
Search Community

Imager

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Imager

  1. I have been using GSAP on a recent web-site development to which I planned on giving a speed boost by applying the latest version of GSAP. I modified my code to support the latest changes in the API, but couldn't get the following code to work anymore.

     

    // worked on 1.6.4.

    // obj is a <img> node fetched with jquery
    obj[0].currentFrame = 1;
    
    var tLine = new TimelineMax({repeat:-1});
    tLine.fromTo(obj, animationDuration,{currentFrame:1},{currentFrame:parseInt(fc)+3, onUpdate:animation, onUpdateParams:[obj], ease:Linear.easeNone}); 
     

     

    Previously this tween set and changed the currentFrame property accordingly, but 1.8.x doesn't. Did I miss something down the line?

     

    Thanks,

     

    -Teemu

×
×
  • Create New...