factory/v2010/chrome.html
author Eugen Sawin <sawine@me73.com>
Mon, 17 Jan 2011 03:44:04 +0100
changeset 36 f477de60f97e
parent 26 5efc8bd3ebd0
permissions -rw-r--r--
Added hacker symbol to logo.
     1 <p>
     2 <!--<img src="images/world.png" alt="world map" height="280" width="100%" />
     3 -->
     4 <canvas id="mandelbrot" width="670" height="280" onclick="draw2(event);"></canvas> 
     5 <button onclick="draw(0, -2, 0, 0, 0);">Left</button>
     6 <button onclick="draw(0, 2, 0, 0, 0);">Right</button>
     7 <button onclick="draw(0, 0, -2, 0, 0)">Up</button>
     8 <button onclick="draw(0, 0, 2, 0, 0);">Down</button>
     9 <button onclick="draw(0, 0, 0, 2, 0);">Zoom in</button>
    10 <button onclick="draw(0, 0, 0, -2, 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