Animation on the Web
-
I want to make a web app(let) that features interactive animation. What tools and knowledge do I need? I have a specific idea in mind--it's not quite a game, but it's like a game in that I need moving graphics that respond to the user's input. The website part is simple though: probably only one page (or a few pages at most), and no stored user information. Please explain what I need to learn and read in order to make this, starting from the very beginning. Pretend I don't know anything about websites, which is pretty much true except for basic HTML (completely static, 1990's style). However, I'm a good programmer in several languages (C, Java, Python, and a few othersânot Javascript or PHP, but I could pick them up). I'm also familiar with OpenGL, if that helps at all. I'd prefer not to use Flash, for reasons that are probably obvious. I also think I don't like Java applets, but it might just be that many of them are poorly designed. Would Processing be a good way to make this? Would the HTML5 Canvas be involved somehow? Or something else entirely? As you can see, I don't even know where to start! Thanks in advance for your help.
-
Answer:
Flash. Flash has an option to publish for iPhone. The user won't be able to go to a website and view the app (because the iPhone doesn't support the Flash browser plug-in), but they will be able to download the app and run it directly.
Chicken Boolean at Ask.Metafilter.Com Visit the source
Other answers
Look at http://processingjs.org/. It is processing ported to JavaScript by resig, the jquery founder. It abstracts everything hattifattener mentions in simple and in your case familiar java. Mmmm it's easy.
Raff
I think you're on the right track looking at Flash, or if you want a more open solution, canvas or inline SVG, with the logic written in JavaScript. With canvas, you have a drawing surface that you draw onto; with http://srufaculty.sru.edu/david.dailey/svg/intro/dynamic.html, you have a display-list-style object model (lines, shapes, etc) that you manipulate. Java is supposed to be the right thing to use for this but not only are most Java applets kind of clunky, most browsers' Java support is kind of clunky as well. OTOH, if you're doing something complex, Java might still be the way to go. How complex are the graphics, and how responsive do they need to be? Is there any sound involved?
hattifattener
Depending on platform, you have the choices of: * HTML5 Canvas (warning, IE not yet supported, probably best on IPhone) * Flash (warning, IPhone not supported) * JavaApplets (warning: programmers not supported. Seriously, this is probably not the way to go) * Processing.js implements many of the same Processing things. Were it me, I would go with HTML5 Canvas, which is only going to grow.
gregglind
You're overestimating my knowledge. As shocking as it may be, I've never really made any kind of website. How do I get JavaScript--or something else--to dynamically change the contents of a webpage in response to events?
Chicken Boolean
hattifattener: simple vector graphics, but preferably very responsive. I currently have no plans for sound but it would be a nice extra.
Chicken Boolean
Canvas has terrible performance on the iPhone for animation. The only option on the iPhone is a native app.
zixyer
The link in my post has the source code to its own example. You can probably find more learning materials on dynamic HTML; dynamic SVG is the same except instead of manipulating HTML, you're manipulating SVG (an XML-based vector graphics language): In either case, the https://developer.mozilla.org/en/JavaScript/A_re-introduction_to_JavaScript running in the page has access to a data structure called the document object model, or https://developer.mozilla.org/en/Gecko_DOM_Reference. This is a tree of objects whose structure roughly mirrors the structure of the HTML (or SVG) that the page originally came from. You can look at this structure and modify it (e.g., you can find the object corresponding to the contents of a <i>foo</i> tag, and assign new values to it; you can create and delete elements; etc.) and the browser will display that change in real time. You can also attach functions to bits of the page so that the functions will be called when various events occur, such as mouse clicks, or someone typing into a form field, etc. If you use https://developer.mozilla.org/en/Canvas_tutorial, then you're also writing JavaScript code, but instead of manipulating a set of objects corresponding to visible things, you're calling methods like "clear this rectangle, now draw a line from here to here, now draw a rectangle...". If you want to change something, you erase and redraw. Unless you're going with Flash or Java, I'd start out just getting the hang of JavaScript in a webpage doing non-graphics stuff (http://jquery.com/ is a very handy javascript library for doing dynamic html-y things) and then decide whether your application is better suited to canvas or SVG.
hattifattener
That makes sense, hattifattener. Reading the SVG example code, it doesn't seem that complicated. I like the display-list part, since I'll have moving shapes (it seems like I'd have to implement that myself if I were using Canvas). Are there any disadvantages to SVG?
Chicken Boolean
Are there any disadvantages to SVG? I like SVG a lot, but I don't know if it's as widely supported as canvas is becoming. It works in Firefox and in the WebKit browsers, but I don't know about MSIE, Opera, whatever.
hattifattener
Related Q & A:
- How To Create Logo Animation Online?Best solution by Yahoo! Answers
- how to apply flip animation to imageviews in android?Best solution by Stack Overflow
- How to apply animation to fields in Blackberry?Best solution by Stack Overflow
- How to animate a View with Translate Animation in Android?Best solution by Stack Overflow
- How to do android dialog flip animation?Best solution by developer.android.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.