Reputation: 225
I was wondering if anyone could point me in the direction of a starting point for creating a game like run field or similar as a way of learning HTML 5 (CSS3).
I have play a bit with GUI elements, but am interested in interactive animation like the above.
Upvotes: 1
Views: 197
Reputation: 13254
here the links I use myself to learn about canvas:
After reading a short guide I suggest you only work with sourcecode examples and googling for specific things. It is fast and you will see that you work most of the time on your own code, thus creating something to show off and getting the nessesary experience with the Canvas API.
Upvotes: 1
Reputation: 303234
This may sound like a snide answer, but I'm being serious. A really general question of "how do I solve this enormous problem" requires you to analyze it and break it down into ever-smaller chunks until they are bite-sized and accomplishable.
Having a good understanding of the capabilities of your development platform will help your brain perform path-finding, figuring out how to get from your goal to your final implementation.
Upvotes: 2
Reputation: 26873
Check out the list of JavaScript game engines. You might find something fitting your purposes there.
Upvotes: 2