-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (49 loc) · 2.16 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>kaleidocycle</title>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/three.min.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4561SRH5PR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4561SRH5PR');
</script>
</head>
<body>
<div class="menu">
<button class="menu-button">
<i class="fa fa-navicon"></i>
</button>
<div class="menu-body">
<div class="header"><i class="fa fa-paint-brush"></i> Palette</div>
<div class="color-palettes">
<div class="palette" data-colors="EFECCA,046380"></div>
<div class="palette" data-colors="468966,FFF0A5"></div>
<div class="palette" data-colors="DC3522,D9CB9E"></div>
<div class="palette" data-colors="5C832F,382513"></div>
<div class="palette" data-colors="2F343B,703030"></div>
<div class="palette" data-colors="D0A825,40627C"></div>
<div class="palette" data-colors="01B0F0,AEEE00"></div>
<div class="palette" data-colors="611427,958976"></div>
<div class="palette" data-colors="FFC861,C84663"></div>
<div class="palette" data-colors="333333,CCCCCC"></div>
</div>
<div class="header"><i class="fa fa-code"></i> Credits</div>
<p>Created by <a href="http://paaatrick.github.io">Patrick Kalita</a></p>
<p>Based on previous work by <a href="http://www.kaleidocycles.de/theory.shtml">Marcus Engel</a></p>
</div>
</div>
<div class="fallback">
Woops. Looks like your browser doesn't support WebGL. You might want to
head over to the <a href="http://get.webgl.org">WebGL site</a> for more
information.
</div>
<script src="js/main.js"></script>
</body>
</html>