vote up 2 vote down star
3

I want to make something similar to this, but I'd like to avoid proprietary platforms (flash). I'm relatively new to development and I'm willing to learn anything. I understand that some javascript frameworks like jQuery and MooTools are capable of some animation, but is this beyond their capability? What do you recommend?

thanks

flag

78% accept rate

9 Answers

vote up 3 vote down check

Take a look at John Resig's processing.js. No need to use raw jQuery when jQuery's primary author already done the work!

link|flag
Thanks! A friend of mine showed me this a long time ago before I could appreciate what it was. This will do the trick, I believe. – ThomasGHenry Feb 12 at 3:05
vote up 1 vote down

The more important question is, if you found such a platform would anyone be able to play it with software they already have installed?

link|flag
I think you hit the nail on the head: Flash is ubiquitous... it makes some sense to take advantage of that. – JMD Feb 12 at 0:53
that's why I'm thinking about JS frameworks – ThomasGHenry Feb 12 at 2:42
vote up 1 vote down

You can use FlashDevelop for the IDE

http://osflash.org/flashdevelop

Also, you can use gnash as the player.

http://www.gnu.org/software/gnash/

link|flag
I think he's asking about the actual platform, not the player. – BC Feb 12 at 0:34
vote up 1 vote down

What about Java or JavaFX? I actually don't know a whole lot about it but it's supposed to be for RIAs which puts it into the Flash and Silverlight class of technologies.

link|flag
vote up 1 vote down

I know that SVG is capable of animation, but I don't know how widespread the support is or what tools support it.

link|flag
as usual on w3 specs: everyone except IE – Javier Feb 12 at 2:01
vote up 0 vote down

To replicate the animation you pointed to would be very difficult in JQuery, but not impossible. Question is, are you up for the challenge?

I wouldn't recommend alternatives to Flash unless the app you are building is internal to your company and you can be sure everyone will have the necessary plugins installed.

link|flag
vote up 0 vote down

Check out Processing.

Also check out the free Flex SDK, which allows you to write and compile Actionscript without the Flash IDE

link|flag
vote up 0 vote down

You could use Moonlight, the open source clone of Silverlight.

link|flag
I believe Moonlight is only a player. You would still need to use Microsoft tools to create the content. – webdtc Feb 13 at 19:36
vote up 0 vote down

From the Java space:

  • JavaFX already had 100.000.000 downloads if you're worried about adoption.
  • Processing. You'd still have to worry about the download size. IMHO, processing is great for prototypes, but you have to do quite a lot of work to make the applet performant, especially when no animation is going.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.