KineticJS is the easy way to do animation, but it doesn't support hardware accel so you can't use retina resolution with reasonable speed. More negatives:

visual comparison of fps

it's possible to do animation with retina/hardware accel having various containers and using "-webkit-transform" to show and hide them.

need a time delay for some reason before starting the animation.

set  “-webkit-backface-visibility: hidden;” to trigger hardware accel


Making clickable animation/still images:


Option 1:

when loading an image, look for filenames i.e. story01.png, story02.png, etc. These are the animations. also look for filenames story01Mousedown.png, story01Mouseover, etc. these are the animations for mousedown, mouseover put each image in its own div. Read all the settings (offsetX, rotation, etc.) and use css3 styles to render these settings. Keep an array of the autogenerated div names with the associated images description area (from Inkscape) could have frame rate, number of frames (if necessary), loop.

Implementing Option 1:

Option 2:

would it be possible to do animation without retina and still images with retina?