UNPKG

mandelbrot-set

Version:

Web components and a web worker for painting Julia and Mandelbrot sets on a web page.

27 lines (26 loc) 1.13 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="description" content="Renders Mandelbrot sets in colour."> <title>Mandelbrot Set</title> <link rel="icon" href="data:,"> <link rel="stylesheet" href="assets/mini-default.min.css"> <link rel="stylesheet" href="assets/mandelbrot.css"> </head> <body> <h1>Mandelbrot Set</h1> <p>A web component and a web worker for painting the Mandelbrot set on a web page. See also <a href="julia.html">Julia</a> sets, an <a href="demo.html">all-in-one demo</a> and the <a href="https://github.com/prantlf/mandelbrot-set">project sources</a>.</p> <mandelbrot-set-computer src="scripts/computer.js"></mandelbrot-set-computer> <div id="main"> <mandelbrot-set-form id="settings" for="graph"></mandelbrot-set-form> <mandelbrot-set-graph id="graph"></mandelbrot-set-graph> </div> <script src="scripts/mandelbrot-set-form.js" type="module"></script> <script src="scripts/mandelbrot-set-graph.js" type="module"></script> </body> </html>