-
Notifications
You must be signed in to change notification settings - Fork 0
/
60.html
93 lines (90 loc) · 3.31 KB
/
60.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/postscript.js"></script>
<script src="js/visualizer.js"></script>
<script type="text/javascript">
(function ($) {
$(function () {
var updater = function () {
var visualizer = new Visualizer($('#canvas')[0], "60", ["#..1......0#0.......","#.0...............#.","01..#....##.........",".#....###.........#.","....#1......#...#...","..#.#...#........##.","................#...",".#...#.#..#.........","..#.....#0..#.#...##","...#....#0..........","...#.........#..##..","..####...1#...1#...#","....1..#............",".....#.#....#.......","#.....#..#..........","0#...............#..","..#.......#.##....#.",".#.#..#.......#.....","..#.....0#....0..#..",".0.....##......#...."], ["#..........#...0....","#01...............#.","....#....##.........",".#0...###..0......#.",".1..#.......#...#...","..#.#.1.#........##.","................#...",".#...#.#..#.........","..#.....#...#.#...##","..0#..1.#...........","...#.........#..##..","..####....#....#...#",".......#............",".....#.#....#...1...","#.....#..#..........",".#..1............#0.","..#.......#.##....#.",".#.#..#.......#.....","0.#......#.......#..","0...0..##.0....#...."], [[1, 2, 3],[2, 0, 1],[2, 1, 3],[4, 5, 3],[12, 4, 1],[18, 8, 3],[0, 10, 1],[1, 10, 0],[0, 3, 1],[0, 2, 2],[8, 3, 3],[0, 4, 1],[1, 4, 2],[1, 17, 3],[0, 17, 0],[0, 12, 1],[0, 13, 0],[3, 12, 0],[0, 12, 1],[3, 9, 2],[3, 12, 3],[10, 8, 0],[10, 4, 3],[6, 4, 2],[6, 15, 3],[0, 3, 2],[0, 4, 1],[1, 4, 0],[9, 9, 2],[9, 19, 1],[10, 19, 0],[10, 18, 1],[15, 0, 1],[18, 14, 0],[18, 10, 1],[19, 1, 3],[18, 1, 0],[0, 5, 0],[1, 2, 2],[0, 2, 1],[1, 17, 0],[4, 2, 3],[8, 9, 1],[10, 9, 0],[10, 4, 3],[6, 4, 0],[6, 0, 1],[13, 0, 2],[12, 0, 1],[13, 4, 1],[13, 0, 2],[18, 4, 3],[13, 4, 0],[19, 4, 3],[11, 9, 0],[11, 6, 3],[2, 2, 1],[4, 2, 0],[4, 0, 1],[12, 0, 2],[12, 6, 3],[4, 6, 0],[4, 5, 3],[0, 5, 0],[1, 2, 2],[0, 2, 1],[1, 17, 0],[4, 2, 0],[13, 0, 3],[5, 0, 2],[5, 1, 1],[6, 1, 2],[6, 15, 3],[1, 15, 0],[4, 0, 2],[1, 3, 1],[4, 3, 0],[3, 3, 0],[0, 1, 2],[0, 10, 1],[1, 10, 0],[1, 3, 1],[8, 3, 2],[8, 7, 1],[11, 7, 0],[11, 6, 3],[6, 6, 0],[6, 0, 3],[5, 0, 2],[5, 1, 3],[14, 4, 2],[14, 5, 1],[0, 12, 2],[0, 14, 1],[7, 14, 0],[7, 11, 3],[4, 11, 1],[11, 14, 0],[19, 11, 3],[11, 11, 2],[12, 11, 0],[12, 8, 1],[18, 8, 0],[18, 3, 1],[19, 3, 2]]);
visualizer.doit();
};
updater();
});
})(jQuery);
</script>
<style type="text/css">
body {
font-family: Arial, Sans-Serif;
}
h3 {
font-size: 12pt;
padding-left: 0.5em;
}
#canvas {
border: 1px solid black;
}
/* td.properties {
padding-left: 1em;
} */
#coord {
position: fixed;
top: 2px;
left: 2px;
font-familiy: Helvetica;
font-size: 10pt;
background: #fef3a1;
border-style: solid;
border-width: 1px;
border-color: #bba824;
padding: 2px 2px 2px 2px;
z-index: 1;
opacity: 0.9;
}
#steps {
align: left;
}
</style>
</head>
<body>
<table>
<tr>
<td colspan="3">
<canvas id="canvas" width="960" height="960" sytle="align: center">
</canvas>
</td>
</tr>
<tr>
<td>
<h3>seed:</h3>
</td>
<td id="seed">
</td>
<td>
</td>
</tr>
<tr>
<td class="properties">
<h3>steps:</h3>
</td>
<td id="steps">
</td>
<td>
</td>
</tr>
<tr>
<td>
<h3>Score:</h3>
</td>
<td id="score">
</td>
<td>
</td>
</tr>
</table>
<div>
<strong id="coord"></strong>
</div>
</body>
</html>