Skip to content

Instantly share code, notes, and snippets.

View andi1984's full-sized avatar
🏠
Working from home

Andreas Sander andi1984

🏠
Working from home
View GitHub Profile
@andi1984
andi1984 / gameengines.md
Created October 10, 2012 06:37 — forked from bebraw/gameengines.md
List of JS game engines. You can find a wikified version at https://github.com/bebraw/jswiki/wiki/Game-Engines. Feel free to modify that. I sync it here every once in a while.

IMPORTANT! Remember to check out the wiki page at https://github.com/bebraw/jswiki/wiki/Game-Engines for the most up to date version. There's also a "notes" column in the table but it simply does not fit there... Check out the raw version to see it.

This table contains primarily HTML5 based game engines and frameworks. You might also want to check out the [[Feature Matrix|Game-Engine-Feature-Matrix]], [[Game Resources]] and [[Scene Graphs]].

Name Size (KB) License Type Unit Tests Docs Repository Notes
Akihabara 453 GPL2, MIT Classic Repro no API github Intended for making classic arcade-style games in JS+HTML5
AllBinary Platform Platform Dependent AllBinary 2D/2.5D/3D n
@andi1984
andi1984 / email.html
Created October 10, 2012 13:46 — forked from anonymous/email.html
html: Form EMail
<input type="email" />
@andi1984
andi1984 / url.html
Created October 10, 2012 13:47 — forked from anonymous/url.html
html: Form URL
<input type="url" />
@andi1984
andi1984 / tel.html
Created October 10, 2012 13:47 — forked from anonymous/tel.html
html: Form Tel
<input type="tel" />
@andi1984
andi1984 / search.html
Created October 10, 2012 13:47 — forked from anonymous/search.html
html: Form Search
<input type="search" />
<input type="number" />
@andi1984
andi1984 / number-attr.html
Created October 10, 2012 13:47 — forked from anonymous/number-attr.html
html: Form Number
<p>
<label>Dein Geburtstag</label>
<input type="number" min="1900" max="2011" />
</p>
<p>
<label>Dein Alkohol-Pegel (Promille)</label>
<input type="number" min="0" max="5" step="0.1" />
</p>
@andi1984
andi1984 / range.html
Created October 10, 2012 13:47 — forked from anonymous/range.html
html: Form Range
<input type="range" />
@andi1984
andi1984 / date.html
Created October 10, 2012 13:47 — forked from anonymous/date.html
html: Form Date & Time
<input type="date" /> <!-- Datum -->
<input type="time" /> <!-- Uhrzeit -->
<input type="datetime" /> <!-- Datum und Uhrzeit (mit Zeitzone) -->
<input type="datetime-local" /> <!-- Datum und Uhrzeit (ohne Zeitzone) -->
<input type="month" /> <!-- Monat -->
<input type="week" /> <!-- Kalenderwoche -->
@andi1984
andi1984 / progress.html
Created October 10, 2012 13:47 — forked from anonymous/progress.html
html: Form Progress
<progress></progress>