The css tag has no usage guidance.
1
vote
1answer
77 views
How are CSS and WebGL coordinates related? [closed]
I'd like to build a simple framework which rendering combines web page DOM elements with WebGL, such that they're manipulable in the same coordinate space.
How does the plain CSS coordinate system ...
0
votes
1answer
59 views
How to manipulate browser pixels on different mobile devices
I'm creating a board game using HTML5, CSS3 and JavaScript. It's working fine on Desktop browsers properly. But when i load it on Windows phone it's not behaving properly. The resolutions and the game ...
0
votes
1answer
180 views
How to use setInterval and clearInterval
I have a game that I am making and cannot seem to get the setInterval and clearInterval methods to work. When I debug it in the browser console it shows that the method is still being called over and ...
0
votes
1answer
209 views
How do I apply a Isometric tile to a Diamond shaped Div
I want to be able to apply my isometric tile
To a diamond shaped div
However I can't seem to create the isometric shaped div.
Closest I got to it was this http://jsfiddle.net/P3yKr/2/ but even ...
0
votes
3answers
192 views
How would I apply my isometric art onto isometric CSS with correct Z-indexing
I have been trying to wrap my head around how to apply my isometric art
into an array like so with correct z-indexing
In the long run I want to be able to select a specific tile and depending on ...
4
votes
1answer
880 views
How can I add custom CSS to a Construct2 game?
I am making a simple game using Construct2. My problem is that Construct2 provides basic HTML buttons, but I want to put a background-image on my buttons.
To do that, I want to add custom CSS to my ...
1
vote
2answers
284 views
Make perfect constant game animation using javascript
I tried different ways to make constant animations using JavaScript and HTML. The problem is that they are never perfect.
If I want to move a square exactly 5 pixels every 50 miliseconds I would use ...
0
votes
1answer
160 views
What strategies can I use to update the visuals of my game to be more modern? [closed]
I'm making a browser strategy game.
Now my problem is that I have a feeling that my design is dated.
For now I have only used background colors and borders to make things look nice, but I have ...
0
votes
1answer
2k views
Draw user interface in OpenGL using web technologies
I am developing a desktop game in C++ and OpenGL. Frameworks I use are GLM and SFML. Since today I used the console window for debug messages. But I want to get rid of that and display debug ...
5
votes
1answer
251 views
How can I convert OBJ data into CSS3D transformations?
I want to convert the data in a 3D .obj file (vertices, normals, faces) to CSS3D (width, height, rotateX,Y,Z and/or similar transforms). I found a bunch of formulae and what-not, but 3D isn't my ...