-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (23 loc) · 858 Bytes
/
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
<html>
<head>
<meta charset="utf-8">
<!-- Chrome origin trial token for WebAssembly SIMD -->
<meta http-equiv="origin-trial" content="AtbuBZ5re4+BOnpGoCgTcfoWJIY2NRVYpAdCbvHuj1IgOGEI8r+/t4ZTxDuHez3Xs9oDrWeJeXTXd4GfP76hUAYAAABleyJvcmlnaW4iOiJodHRwczovL2RsYmszNWt3N3V3N2YuY2xvdWRmcm9udC5uZXQ6NDQzIiwiZmVhdHVyZSI6IldlYkFzc2VtYmx5U2ltZCIsImV4cGlyeSI6MTYxNDc4ODU5Mn0=">
<title>Mandelbrot</title>
<link rel="StyleSheet" href="style.css" type="text/css">
<script type="module" src="app.js"></script>
</head>
<body>
<div id="container">
<div id="sel"></div>
<canvas id="canvas" width="1000" height="1000"></canvas>
</div>
<div id="pos"></div>
<div>
<p>
Click/touch and drag to zoom!
<p>
<a href="https://github.com/marcusb/mandel-js">[source]</a>
</div>
</body>
</html>