-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmandelbrot.html
51 lines (47 loc) · 1.88 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
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;300;400;600;700&display=swap"
rel="stylesheet" />
<link href="dist/css/style.css" rel="stylesheet" />
<script type="module" src="dist/js/components/mm-mandelbrot.js"></script>
<script type="module" src="dist/js/components/ui-elements/side-bar.js"></script>
<script type="module" src="dist/js/components/ui-elements/fullscreen-button.js"></script>
<script type="module" src="dist/js/components/performance/performance-monitor.js"></script>
<title>Mandelbrot - Markup Monks</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B0BEV3T4NK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-B0BEV3T4NK');
</script>
</head>
<body>
<div class="content" data-content>
<side-bar></side-bar>
<section class="fractals">
<header class="fractals__header shader-canvas">
<h1 class="fractals__main-header">Mandelbrot Set</h1>
<h5 class="fractals__sub-header">
Web component for Mandelbrot set
</h5>
<p class="intro__details code">
Usage:
<code><mm-mandelbrot class="fractals__item"></mm-mandelbrot>
</code>
</p>
</header>
<div class="fractals__items">
<mm-mandelbrot class="fractals__item shader-canvas" animate="true"></mm-mandelbrot>
</div>
</section>
<fullscreen-button></fullscreen-button>
<mm-performance-monitor></mm-performance-monitor>
</div>
</body>
</html>