summaryrefslogtreecommitdiff
path: root/mandelbrot.html
diff options
context:
space:
mode:
authorpommicket <leonardomtenenbaum@gmail.com>2016-08-31 14:58:23 -0400
committerpommicket <leonardomtenenbaum@gmail.com>2016-08-31 14:58:23 -0400
commita982632b1cc3218d74acec2b5f6a69ffc5e97ead (patch)
treed7a7761c1a905450c3d57f4ae75048616850c06b /mandelbrot.html
parentafff994f985121e89de4b1e3bb509b62eb956e5a (diff)
Cleaned up code and improved website layout.
Diffstat (limited to 'mandelbrot.html')
-rw-r--r--mandelbrot.html13
1 files changed, 9 insertions, 4 deletions
diff --git a/mandelbrot.html b/mandelbrot.html
index e46eaca..93fbbbc 100644
--- a/mandelbrot.html
+++ b/mandelbrot.html
@@ -10,10 +10,15 @@
<script src="navbar.js"></script>
<h2>Mandelbrot Set</h2>
- <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>
+ <div class="container-fluid">
+ <div class="col-lg-5 col-md-6 col-sm-8 col-xs-12" id="explanation">
+ 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>
+ </div>
+ </div>
+ <br>
+ <canvas width="500" height="500" id="canvas"></canvas>
<script src="js/mandelbrot.js"></script>
</body>
</html>