-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmandelbrot.html
48 lines (48 loc) · 2.27 KB
/
mandelbrot.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
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mandelbrot</title>
<meta name="description" content="Mandelbrot">
<meta name="author" content="">
<link rel="stylesheet" href="mandelbrot.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<canvas id="offscreen" width="640" height="1"></canvas>
<canvas id="scaled" width="640" height="480">
This page requires support for the HTML5 canvas element, which
your browser doesn't.
</canvas>
<canvas id="canvas" width="640" height="480"></canvas>
<canvas id="progress"></canvas>
<div id="toolbar" class="toolbar">
<button id="julia-button" title="Toggle Julia/Mandelbrot (J)"><i class="fa fa-exchange" aria-hidden="true"></i></button>
<button id="reset-button" title="Reset Zoom (R)"><i class="fa fa-search-minus" aria-hidden="true"></i></button>
<button id="fullscreen-button" title="Fullscreen (F)"><i class="fa fa-arrows-alt" aria-hidden="true"></i></button>
<button id="performance-button" title="Display progress (P)"><i class="fa fa-clock-o" aria-hidden="true"></i></button>
<button id="about-button" title="About (A)"><i class="fa fa-question-circle-o" aria-hidden="true"></i></button>
<button id="toolbar-button" title="Toggle toolbar (TAB)"><i id="eye" class="fa fa-eye" aria-hidden="true"></i></button>
</div>
<div id="about" class="about">
<a id="close-about-button" href="#"><i class="fa fa-times" aria-hidden="true"></i></a>
<p>Javascript Mandelbrot Toy - by Lars Christensen <<a href="mailto:[email protected]">[email protected]</a>>
</p>
<p>Features:</p>
<ul>
<li>Fast multi-core rendering using WebWorkers</li>
<li>Smooth zoom/resize used image scaling</li>
<li>Auto iteration limit</li>
<li>Smooth palette</li>
<li>Progressive sub-pixel rendering</li>
</ul>
<p>Source: <a href="https://github.com/larsch/webfractals">https://github.com/larsch/webfractals</a></p>
</div>
<div id="perf-widget" class="perf-widget">
<button id="perf-set-button" class="perf-set-button">Set</button>
<div id="perf-log" class="perf-log">
</div>
</div>
<script src="mandelbrot.js"></script>
</body>
</html>