summaryrefslogtreecommitdiff
path: root/mandelbrot.html
diff options
context:
space:
mode:
authorpommicket <leonardomtenenbaum@gmail.com>2016-07-01 17:43:58 -0400
committerpommicket <leonardomtenenbaum@gmail.com>2016-07-01 17:43:58 -0400
commitbe06edbcfd1213ea1658d36f8934493a92205aac (patch)
tree28dca6130833e3a770611961bc6559c08bed4161 /mandelbrot.html
Created pommicket.github.io
Diffstat (limited to 'mandelbrot.html')
-rw-r--r--mandelbrot.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/mandelbrot.html b/mandelbrot.html
new file mode 100644
index 0000000..caab5a7
--- /dev/null
+++ b/mandelbrot.html
@@ -0,0 +1,20 @@
+<html>
+<head>
+<title>The Mandelbrot Set</title>
+<link rel="stylesheet" href="css/bootstrap.min.css">
+<link rel="stylesheet" href="css/style.css">
+
+</head>
+<body>
+<h2>Mandelbrot Set</h2>
+<div id="header_links_div"></div>
+<script src="js/header_links.js"></script>
+<hr>
+
+<p>The Mandelbrot Set is a <a target="_blank" href="https://en.wikipedia.org/wiki/Fractal">fractal</a>. An explanation of how it works can be found <a href="mandelbrot_explanation.html">here</a>. Click on a spot to zoom in on that spot or press A to zoom in and
+Q to zoom out. Press P to increase the power, and L to decrease it. Press I to increase the maximum number of iterations and K to decrease it.<br>
+<b>Every time you zoom in or out, change the power, or change the maximum number of iterations it will take a bit of time to load.</b></p>
+<canvas width=500 height=500 id="canvas"></canvas>
+<script src="js/mandelbrot.js"></script>
+</body>
+</html>