-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.9 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" href="css/fractal.css">
</head>
<body>
<div>
<div id="result" class="result">
<canvas class="canvas" id="zoomCanvas" style="border:1px solid #c3c3c3; position: absolute; left: 0; top: 0; z-index: 2;" width="1200px" height="1200px" >
Your browser does not support the HTML5 canvas tag.
</canvas>
<canvas class="canvas" id="fractalCanvas" style="border:1px solid #c3c3c3; position: absolute; left: 0; top: 0; z-index: 1;" width="1200px" height="1200px" >
Your browser does not support the HTML5 canvas tag.
</canvas>
<canvas class="canvas" id="backgroundCanvas" style="background: black; border:1px solid #c3c3c3; position: absolute; left: 0; top: 0; z-index: 0;" width="1200px" height="1200px" >
Your browser does not support the HTML5 canvas tag.
</canvas>
</div>
<div class="fractals">
<ul>
<li><button type="button" class="fractal" id="mandelbrot">Mandelbrot!</button></li>
<li><button type="button" class="fractal" id="julia">Julia!</button>
Real:<input id="seedReal" type="number">
Imaginary:<input id="seedIm" type="number"></p></li>
</ul>
</div>
<div class="log">
<textarea id="mainLog" title="log" cols="120" rows="10"></textarea>
</div>
</div>
<!-- Beware of the order of this javascript functions when one file uses a constructor method of another file -->
<script src="js/jquery-1.12.0.js"></script>
<script src="js/grid.js"></script>
<script src="js/config.js"></script>
<script src="js/operations.js"></script>
<script src="js/fractal.js"></script>
<script src="js/controller.js"></script>
</body>
</html>