factory/v2010/chrome.html
author Eugen Sawin <sawine@me73.com>
Tue, 06 Jul 2010 23:59:31 +0200
changeset 25 b2386d49eeae
parent 17 a264da3d80be
child 26 5efc8bd3ebd0
permissions -rw-r--r--
Increased navigation speed.
     1 <p>
     2 <!--<img src="images/world.png" alt="world map" height="280" width="100%" />
     3 -->
     4 <canvas id="mandelbrot" width="670" height="280"></canvas> 
     5 <button onclick="draw(0, -1, 0, 0, 0);">Left</button>
     6 <button onclick="draw(0, 1, 0, 0, 0);">Right</button>
     7 <button onclick="draw(0, 0, -1, 0, 0)">Up</button>
     8 <button onclick="draw(0, 0, 1, 0, 0);">Down</button>
     9 <button onclick="draw(0, 0, 0, 1, 0);">Zoom in</button>
    10 <button onclick="draw(0, 0, 0, -1, 0);">Zoom out</button>
    11 <button onclick="draw(0, 0, 0, 0, -1);">Inc Resolution</button>
    12 <button onclick="draw(0, 0, 0, 0, 1);">Dec Resolution</button>
    13 <button onclick="draw(100, 0, 0, 0, 0);">Inc Iterations</button>
    14 <button onclick="draw(-100, 0, 0, 0, 0);">Dec Iterations</button>
    15 </p>
    16