Skip to main content
1 of 4
David Gouveia
  • 25k
  • 5
  • 88
  • 127

I don't know about jQuery but in general terms I can think of a few alternatives.

  1. Use isometric tiles to create the background. It's very similar to creating a top-down tile based map but with tiles being offset a little. You can find more information here.

enter image description here

  1. Turn a top-down background into isometric by rotating 45º and compressing it vertically, either in code or in some image manipulation software.

enter image description here

  1. Probably not applicable here but in a 3D API you can also get an isometric view of the world by setting an orthographic projection and positioning the camera at the correct angle.
David Gouveia
  • 25k
  • 5
  • 88
  • 127