factory/v2010/chrome.html
author Eugen Sawin <sawine@me73.com>
Tue, 06 Jul 2010 00:05:38 +0200
changeset 17 a264da3d80be
parent 14 7755b7760491
child 20 adbea491e9b9
permissions -rw-r--r--
Fixed some issues.
     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 </p>
    14