Jump to content

CreateJs Tween repeat count


PixelPush
 Share

Recommended Posts

Anyone know how to define a repeat count for a tweenJS tween (using easeJs framework) ?

The only option I can currently find is {loop:true} which causes infinite looping.

//my code

var solidsAnim = createjs.Tween.get(icon,{loop:true})
        .to({y:solidOriginalY - 50}, 600 ,createjs.Ease.SineIn)

 

Thanks !

 

Link to comment
Share on other sites

  • 2 weeks later...

I don't think there is an "easy" way to do it, but one way is to simply chain several tweens in a row.

  .to({y:solidOriginalY - 50} , 600).to( {...

 

Another way is to loop and keep count in a "change" event handler and then stop the tween/loop from there:

.to({y:solidOriginalY - 50}, 600 ,createjs.Ease.SineIn) .addEventListener("change", handleChange);

function handleChange(e){

//check your counter and then

e.target.removeTweens(e.target.target) //solidsAnim.removeTweens(icon)

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...