Begining HTML5 game part 2

To continue Begining HTML5 game part 1 . Download images for this tutorial . https://docs.google.com/open?id=0B3wmdk4k7b_-V3Q1TTVIWW5LaWM (Save s to get zip package) We using simple html5 game framework for develop a card game . Maybe blackjack First, you need create Struct Folder to easy manager when your project become  complex  In WebContent-> index.html : Body part, add…

Read More

Begining HTML5 game part 1

OK. Let’s start . Do you know HTML ? Create file game.html with content : <!DOCTYPE html> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=ISO-8859-1″> <title>Insert title here</title> </head> <body> </body> </html> Adding some javascript as framework <!DOCTYPE html> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=ISO-8859-1″> <title>Insert title here</title> <script type=”text/javascript”>     function update()     {       …

Read More