switch host name of Mozilla Marketplace
[mandelbrot-web.git] / index.html
CommitLineData
d0244cd3
RK
1<!-- This Source Code Form is subject to the terms of the Mozilla Public
2 - License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 - You can obtain one at http://mozilla.org/MPL/2.0/. -->
95d05599 4
6a7aa57d
RK
5<!DOCTYPE html>
6<html manifest="manifest.appcache">
7<head>
8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
9 <title>KaiRo.at Mandelbrot Web</title>
10 <script src="js/mandelbrot.js"></script>
11 <link rel="stylesheet" href="style/mandelbrot.css">
eb5900e3 12 <link rel="shortcut icon" href="style/mandelbrotIcon16.png" type="image/png">
6a7aa57d 13</head>
becdac35 14<body onload="Startup();">
6a7aa57d
RK
15<h1>KaiRo.at Mandelbrot Web</h1>
16
17<div id="overlayArea">
18<input type="button" id="drawButton" value="Draw Image"
19 onclick="drawImage();">
becdac35 20<input type="button" id="backButton" value="Back"
95d05599 21 onclick="goBack();" disabled="true">
6a7aa57d
RK
22<input type="button" id="settingsButton" value="Settings"
23 onclick="toggleSettings();">
24<fieldset id="settings"><legend>Image data</legend>
25Image coordinates:
26<br>Real:
27Min: <input id="Cr_min" value="-2.0" maxlength="6" size="6" type="text">
28Max: <input id="Cr_max" value="1.0" maxlength="6" size="6" type="text">
29<br>Imag:
30Min: <input id="Ci_min" value="-1.5" maxlength="6" size="6" type="text">
31Max: <input id="Ci_max" value="1.5" maxlength="6" size="6" type="text">
32
33<br>Maximum of iterations:
34<select id="iterMax">
35<option value="50">50</option>
36<option value="100">100</option>
37<option value="500" selected="selected">500</option>
38<option value="1000">1000</option>
39<option value="5000">5000</option>
40</select>
41
42<br>Color palette:
43<select id="palette">
44<option value="bw">Black &amp; White</option>
45<option value="kairo" selected="selected">KaiRo default</option>
46<option value="rainbow-linear1">Rainbow-linear 1</option>
becdac35
RK
47<option value="rainbow-squared1">Rainbow 1 Squared</option>
48<option value="rainbow-linear2">Rainbow 2 Linear</option>
49<option value="rainbow-squared2">Rainbow 2 Squared</option>
6a7aa57d
RK
50</select>
51</fieldset>
52</div>
53
54<div id="mainArea">
95d05599
RK
55<canvas id="mbrotImage" width="300" height="300"
56 onclick="drawIfEmpty();"></canvas>
6a7aa57d
RK
57</div>
58
59<p>Time taken for calculation: <span id="calcTime">none yet</span></p>
60
61</body></html>