Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>Maze</title>
<style>
.maze_outer { position:absolute; left:20px; top:20px; }
.maze_inner { position:relative; }
.maze_cell { position:absolute; width:16px; height:16px; overflow:hidden; border:1px solid black; }
</style>
<script>
window.onload = init;
function init(){
var mz = new Maze();
mz.create();
document.body.appendChild(mz.toHTMLObject());
}
CSS代码...
JS代码...
xxxxxxxxxx