need some help with html5 :)
12 years ago
I'm trying to figure out how to convert my animations (including change speeds and sound control) to html5. I've tried to use Google Swiffy and Toolkit for CreateJS but no luck as well, there's a lot of commands that both plugins can't work with. So was thinking to recreate the animations right into html5.
if anyone is able to help me with this issues, please email me: washazoo@gmail.com, in this way will be easier to keep track of the conversation, or simply add me on skype/gtalk :)
if anyone is able to help me with this issues, please email me: washazoo@gmail.com, in this way will be easier to keep track of the conversation, or simply add me on skype/gtalk :)
is it possible to add conditions for the player? like for example, on my animations I've create an if and else condition that checks if the "next button" as been hit it'll play the animation until the last frame and then change the speed (goes to a different animation file).
Flash makes it look easy.
Yes, from my information it can create something close to similar, but there's some conditions. It's not fully programmable in the same way like individual tweens if you're talking native video format, if you're doing objects on canvas, you basically are doing flash with html5 those can be moved and follow tracks of points, but canvas is still even farther off from being compatable in anything but the very newest versions of browsers. Though the needs you have, you can create the same things with some 'absolute' css positioned buttons over the video, and then yes there's javascript commands to swap video out, autoplay, pause, jump to time, and even rewind (play backward) in most browsers.
It's pretty much same as javascript drawing on canvas or doc, you create the variable, bind it to the element that wraps the video, and then can just issue el.stop(); and such.