jQuery is a cross-browser JavaScript library that facilitates DOM traversal, event handling, animation and AJAX interactions.
-1
votes
1answer
76 views
View port for my canvas game
I am developing a canvas game, and im struggling to get my head around how i can make a view port so when the character moves the world moves with it.
Unlike traditional 2d maps built with arrays i ...
-4
votes
0answers
37 views
Help needed with gameQuery [closed]
I am beginning javascript developer and I am looking for help on using jQuery plugin gameQuery.
4
votes
1answer
206 views
Working principle of an RPG map
I am currently thinking of building a basic browser-based 2D(that would eventually become 2.5D) RPG. I have planned everything and I think that would be able to accomplish the current goals, but it ...
-1
votes
2answers
128 views
Game library for 2D animation JS browsergame [closed]
I am developing a 2D multiplayer online browsergame.
On the backend I have set up a Node.js server. Everything works perfectly.
On the frontend I will use jQuery and several libs for collision etc. ...
2
votes
2answers
193 views
Receiving keyboard events on a canvas in Javascript
I need to receive keyboard events in a canvas element. Click events are received but key presses aren't.
Here is my code which doesn't handle key events:
var canvasElm = $('canvas');
...