CDungeon
About
This is a little maze generator and grid-based dungeon crawler experiment. It grew largely out of an interest in experimenting with ways to render the 3D view for these sorts of dungeon crawlers; it turned out that perspective transforms in CSS worked well enough so that's what you're seeing here.
You can navigate using the W, Q, and E keys -- W to move forward, Q and E to turn left and right.
You can reload to get a new dungeon to explore. The dungeons are generated with either Prim's algorithm or a recursive backtracking algorithm (picked at random), then some subset of dead ends are converted to loops (exactly how many dead ends are converted is also random).
The source code for this is available too, over on GitHub: https://github.com/spinfoam-games/CDungeon