Question

As someone who is just now moving from ActionScript development into JavaScript development, I'm looking at various frameworks that can give me some of the animation power and flexibility that I'm used to. I'm a bit confused by all the various options that are out there.

I'm currently using CreateJS because of the CreateJS Toolkit that is built into Flash, to help me port some of my work into JavaScript.

Are JQuery and GreenSock TweenMax competitors to CreateJS? Are they complimentary? Are they entirely unrelated?

Thanks. I feel embarrassed to be asking these n00b questions, but it is what it is.

Was it helpful?

Solution

CreateJS is a framework that uses several libraries for a more fully-featured, pre-packaged app building experience. This is probably a good thing if you come from an ActionScript/Flash environment as it will be somewhat familiar.

Greensock TweenMax specifically competes with a section of CreateJS's framework, namely TweenJS, and targets post-Flash developers in a similar. TweenMax does offer a useful amount of features and is actually quite fast, though I've only tooled around with it briefly.

Jquery is a library for DOM manipulation/event handling/ simple animation (think, ease in a box, animate on mouseover, etc)/ AJAX. Jquery is incredibly popular and exists on over 50% of websites. However, this solution isn't specifically focused on making animation-heavy applications like games, etc. For smoothing over cross-browser issues and adding some power and fluidity to common actions (DOM/AJAX/events), it's hard to beat.

OTHER TIPS

I worked a lot with AS and I think the best solution for you is HTMl5+CSS3+JS/JQUERY. Regards :)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top