-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 1.78 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="keywords" content="liamness, liam duffy, programmer, designer" />
<meta name="author" content="liam duffy" />
<meta name="dcterms.rights" content="2013 liam paul duffy" />
<title>Fractal Viewer</title>
<link rel="stylesheet" href="demo.css" />
</head>
<body class="popup-active">
<div class="demo">
<canvas id="canvas" width="400" height="400">If you're seeing this, it probably means your browser doesn't support WebGL, and so you can't see this lovely demo. :(</canvas>
</div>
<div class="popup-wrap">
<div class="popup">
<p><strong>Instructions:</strong></p>
<p>You can move around the fractal and zoom using your mouse or touch controls. Extended settings available using the dropdown in the top right.</p>
<p><strong><a onclick="removeDialog()">Click to begin</a></strong></p>
</div>
</div>
<script type="text/javascript" src="bower_components/dat-gui/build/dat.gui.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WTRVPL"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WTRVPL');</script>
</body>
</html>